Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convert2Local/previewLocalClass.java
Bart van Helvert ed388efc1a [java-inspections] IDEA-298787 Add preview to 'ConvertFieldToLocalQuickFix'
GitOrigin-RevId: b8b06b05c9c3fbb8111f3caded9a6a2f5d3e911f
2022-07-29 14:24:14 +00:00

12 lines
219 B
Java

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