mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
IJ-CR-21030 IDEA-255881 GitOrigin-RevId: 08c9ca492ab9f400a488b1a7590e3292dbf921ad
15 lines
206 B
Java
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 "";
|
|
}
|
|
}
|