Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeContinueWithCommentNoBlock.java
2018-03-12 15:55:14 +07:00

9 lines
180 B
Java

// "Invert 'if' condition" "true"
class A {
void f(){
while (true) {
i<caret>f (true) continue;//comment
System.out.println();
}
}
}