summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/invertIfCondition/beforeIDEA18864_1.java
blob: 7454355e9b6a85fe40106a236bef422242e443bb (plain)
1
2
3
4
5
6
7
8
9
// "Invert If Condition" "true"
class A {
    public static void foo() {
        <caret>if (1 != 2) {
            // very important comment here
            System.out.println("something");
        }
    }
}