Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeNestedIf5.java
2017-06-26 17:07:29 +03:00

12 lines
235 B
Java

// "Invert 'if' condition" "true"
class Main {
Object foo(boolean b1, boolean b2) {
if (b1) {
return null;
} else if (!b<caret>2) {
return "a";
}
return null;
}
}