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

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