summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/invertIfCondition/afterParenthesis.java
blob: 19bb3770a235453eaa8d7690a942c859c716cc5a (plain)
1
2
3
4
5
6
7
8
9
10
// "Invert If Condition" "true"
class A {
    public boolean foo(boolean a, boolean b, boolean c, boolean d) {

        if ((a || b) && !c && !d) {
            return true;
        }
        return false;
    }
}