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