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

13 lines
234 B
Java

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