mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-19 14:21:27 +07:00
IJ-CR-21030 IDEA-255881 GitOrigin-RevId: 8e6b0c6acb9505e75356c4c23c80c5c66870cd41
21 lines
296 B
Java
21 lines
296 B
Java
// "Qualify the call with 'B'" "true"
|
|
class A {
|
|
class B {
|
|
class C {
|
|
static String name() {
|
|
return "";
|
|
}
|
|
|
|
class D {
|
|
static String name(String key) {
|
|
return B.name();
|
|
}
|
|
}
|
|
}
|
|
|
|
static String name() {
|
|
return "";
|
|
}
|
|
}
|
|
}
|