Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/qualifyMethodCall/beforeNonStaticMethodFromStaticContext4.java
T

17 lines
221 B
Java

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