blob: 757174d01452d49ff6143520cddb05c18565610b [file] [log] [blame]
// "Qualify this expression with 'Test.Foo'" "true"
class Test {
void foo(Foo m) {
}
class Foo {
void bar() {
new Runnable() {
@Override
public void run() {
foo(th<caret>is);
}
}.run();
}
}
}