Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeParenthesis4.java
2015-01-27 08:53:27 +01:00

10 lines
223 B
Java

// "Invert 'if' condition" "true"
class Inversion {
public void context(boolean a, boolean b, boolean c) {
if ((a &<caret>& b && c)) {
System.out.println(0);
} else {
System.out.println(1);
}
}
}