Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeNestedIf3.java

10 lines
220 B
Java

// "Invert 'if' condition" "true"
class Main {
boolean method(boolean a, boolean b) {
if (a)
<caret>if (!b)
return true; // comment
int x = 1;
return false;
}
}