blob: c270a5ecbcaf6fae77970afcc4352080aae6cec8 [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(Foo.this);
}
}.run();
}
}
}