blob: ac937dc290413cb2e4d7a61b02a79642132822b7 [file] [log] [blame]
public class Test {
private String myStr;
public String getMyStr() {
return myStr;
}
void foo() {
new Runnable(){
@Override
public void run() {
System.out.println(<selection>myStr</selection>);
}
};
}
}
class X {
public void n() {
new Test().foo();
}
}