Files
2022-07-27 10:00:37 +00:00

7 lines
116 B
Java

// "Create local variable 'x'" "true-preview"
class A {
public void foo() {
Object x;
x;
}
}