blob: 7454355e9b6a85fe40106a236bef422242e443bb [file] [log] [blame]
// "Invert If Condition" "true"
class A {
public static void foo() {
<caret>if (1 != 2) {
// very important comment here
System.out.println("something");
}
}
}