Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convert2Local/beforeLocalClass.java

13 lines
237 B
Java

// "Convert field to local variable in method 'test'" "true"
class Foo {
void test() {
class Bar {
private int <caret>x;
void test() {
x = 2; // could be local
System.out.println(x);
}
}
}
}