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

13 lines
234 B
Java

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