Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeContinueWithComment.java
T

11 lines
212 B
Java

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