summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/fixAll/before1.java
blob: 698897914e67f1cdc0606baab2d4d2660028d46c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// "Fix all 'Constant conditions & exceptions' problems in file" "true"
public class Test {
  void foo() {
    int k = 0;
    int i = 0;
    if (i <caret>== k) {}
    if (i == k) {}
    if (i == k) {}
    if (i == k) {}
    if (i == k) {}
    if (i == k) {}
  }
}