Files

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 "";
}
}