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

10 lines
196 B
Java

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