mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
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 "";
|
|
}
|
|
}
|
|
}
|