Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convert2Local/previewNestedClass.java
Bart van Helvert 07e6ec4678 [java-inspections] IJ-CR-27871 Introduce local variable in preview
GitOrigin-RevId: 1d9b8d6e4acab1a48e99370cf8a296e84309d7f2
2022-08-09 11:36:04 +00:00

10 lines
206 B
Java

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