summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/invertIfCondition/afterContinue1.java
blob: f639171ee293add033eecfe7f800fed7be226bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// "Invert If Condition" "true"
class A {
    void foo () {
      int a = 0, b = 0;
      for (;;) {
          <caret>if (a != b) {
              a = b;
          }
      }
    }
}