Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeEmptyParenthesis.java
2017-04-10 12:09:51 +07:00

9 lines
153 B
Java

// "Invert 'if' condition" "true"
class A {
public boolean foo() {
if ((<caret>))
return false;
else
return true;
}
}