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