summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/invertIfCondition/afterConditionNot.java
blob: f144d814f226a014febec4242e340bb31c1b82c8 (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();
        }
    }
}