Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeIDEA18864_1.java
2010-06-25 12:46:40 +04:00

10 lines
208 B
Java

// "Invert If Condition" "true"
class A {
public static void foo() {
<caret>if (1 != 2) {
// very important comment here
System.out.println("something");
}
}
}