Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeCommentInsideCondition.java
2018-02-04 23:32:20 +01:00

11 lines
241 B
Java

// "Invert 'if' condition" "true"
class A {
public void foo() {
<caret>if (1 //comment
== 2) {
System.out.println("true");
} else {
System.out.println("false");
}
}
}