Files
openide/java/java-tests/testData/codeInsight/generateConstructor/afterFieldPrefixCoincidence1.java

7 lines
88 B
Java

class Test {
private int _foo;
public Test(int foo) {
_foo = foo;
}
}