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

10 lines
191 B
Java

// "Create local variable 'x'" "true-preview"
class other {
public int method1() { return 1;}
public String field1;
}
class A {
public void foo() {
<caret>x.method1();
}
}