summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/createSwitch/notAvailable2.java
blob: 112e2d450d9b1327c02824aab7b7973e4d28b513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class X {

  void m() {

    int foo = 10;
    int bar = fo<caret>o + 10;

  }

  void m2(int i) {
  }

}