Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/afterContinueWithCommentNoBlock.java

10 lines
184 B
Java

// "Invert 'if' condition" "true"
class A {
void f(){
while (true) {
if (false) {
System.out.println();
}//comment
}
}
}