Files
openide/java/java-tests/testData/codeInsight/splitIfAction/beforeCommentBeforeElse2.java
2018-04-12 16:51:31 +07:00

16 lines
290 B
Java

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