blob: ca8ef27512f5af4e1964a656e7f5415cdc1ac226 [file] [log] [blame]
// "Invert If Condition" "true"
class Inversion {
public void context(boolean a, boolean b, boolean c) {
if ((!a && !b) || !c) {
System.out.println(1);
}
else {
System.out.println(0);
}
}
}