blob: 054138925be5e8a8fc5d89f6c4340c3bad529082 [file] [log] [blame]
// "Create Local Variable 'x'" "true"
class other {
public int method1() { return 1;}
public String field1;
}
class A {
public void foo() {
int i = <caret>x.field1;
}
}