summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/generateConstructor/afterFieldPrefixCoincidence1.java
blob: 29be0de779ed45581c198238ac06d0a1f2678b84 (plain)
1
2
3
4
5
6
7
class Test {
  private int _foo;

    Test(int foo) {
        _foo = foo;
    }
}