Files
2023-07-07 15:58:22 +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);
}
}
}