Files
openide/java/java-tests/testData/codeInsight/splitIfAction/beforeCommentBeforeElse2.java
T
2019-08-05 04:02:41 +03:00

16 lines
321 B
Java

class C {
void foo(boolean a, boolean b, boolean c) {
if (a &<caret>& b) {
call();
} // foo
else if (a && c) {
otherCall();
} // bar
else if(a) {
thirdCall();
} // baz
else {
fourthCall();
} // qux
}
}