Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeParenthesis2.java
2014-12-06 10:57:22 +03:00

10 lines
306 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);
}
}
}