mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
f0000950e6
IJ-CR-21030 IDEA-255881 GitOrigin-RevId: 8e6b0c6acb9505e75356c4c23c80c5c66870cd41
13 lines
180 B
Java
13 lines
180 B
Java
// "Qualify the call with 'A.this'" "false"
|
|
class A {
|
|
class B {
|
|
static String name(String key) {
|
|
return name(<caret>);
|
|
}
|
|
}
|
|
|
|
String name(){
|
|
return "";
|
|
}
|
|
}
|