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