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