Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/qualifyThis/before5.java

19 lines
257 B
Java

// "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();
}
}
}