Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/qualifyMethodCall/afterDeep1.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

21 lines
296 B
Java

// "Qualify the call with 'B'" "true"
class A {
class B {
class C {
static String name() {
return "";
}
class D {
static String name(String key) {
return B.name();
}
}
}
static String name() {
return "";
}
}
}