summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/fixAll/after2.java
blob: 877810ea9adef607553fee03ce2447a2bf7266f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// "Fix all 'Constant conditions & exceptions' problems" "true"
public class Test {
  void foo1() {
    int k = 0;
    int i = 0;
  }

  void foo2() {
    int k = 0;
    int i = 0;
  }
}