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