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