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