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

11 lines
145 B
Java

// "Qualify this expression with 'Test'" "true"
class Test {
void foo(Test t){}
class Foo {
Foo() {
foo(thi<caret>s);
}
}
}