summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/invertIfCondition/beforeFor1.java
blob: 0015a331ee8d882e5aa8417cc788556d7af387b5 (plain)
1
2
3
4
5
6
7
8
// "Invert If Condition" "true"
class A {
    public void foo() {
        for (int i = 0;;i++) {
            <caret>if (c) a();
        }
    }
}