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