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

10 lines
169 B
Java

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