summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/invertIfCondition/afterConditionEq.java
blob: 1249590ebb829b90a90078801a7acc757c6322ae (plain)
1
2
3
4
5
6
7
8
9
10
11
// "Invert If Condition" "true"
class A {
    public void foo() {
        <caret>if (c != d) {
            b();
        }
        else {
            a();
        }
    }
}