mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
63ab4f06f7
IJ-CR-21030 GitOrigin-RevId: a91e78151cab5c78fe3576c61b71db6cf7b46403
17 lines
221 B
Java
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 "";
|
|
}
|
|
}
|