Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeContinueWithComment.java
2017-11-22 19:42:58 +01:00

11 lines
212 B
Java

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