blob: 5773ddeda97bab60176f659eb97ca60942382451 [file] [log] [blame]
// "Invert If Condition" "true"
public class C {
public static int main(String[] args) {
if (!a) {
foo();
return 1;
}
else {
return 2;
}
}
private static void foo() {
}
}