Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/qualifyMethodCall/beforeNonStaticMethodFromStaticContext3.java
Andrey.Cherkasov 97732a6b32 [java-intentions] Fix false positive and false negative appearance of the "Qualify the call with '...'" quick-fix
IJ-CR-21030
IDEA-255881

GitOrigin-RevId: 08c9ca492ab9f400a488b1a7590e3292dbf921ad
2022-04-28 05:07:45 +00:00

15 lines
206 B
Java

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