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