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