Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/qualifyMethodCall/beforeBaseClassNonStaticMethod2.java
Andrey.Cherkasov f0000950e6 [java-intentions] Qualify a method call with an outer class name: fixes after review
IJ-CR-21030
IDEA-255881

GitOrigin-RevId: 8e6b0c6acb9505e75356c4c23c80c5c66870cd41
2022-02-19 05:57:41 +00:00

15 lines
201 B
Java

// "Qualify the call with 'A.this'" "true"
class Base {
String name() {
return "";
}
}
class A extends Base {
class B {
String name(String key) {
return name(<caret>);
}
}
}