blob: 461672c903835f0158b7118f198533845cd8d27c [file] [log] [blame]
// "Invert If Condition" "true"
class B {
public static void foo() {
for (int i = 0; i < 10; i++) {
if (i % 2 == 0) {
if (i != 0) {
System.out.println("!= 0");
}
else {
System.out.println("== 0");
}
}
}
}
}