mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
21 lines
309 B
Java
21 lines
309 B
Java
// "Qualify the call with 'C'" "true-preview"
|
|
class A {
|
|
class B {
|
|
class C {
|
|
static String name() {
|
|
return "";
|
|
}
|
|
|
|
class D {
|
|
static String name(String key) {
|
|
return name(<caret>);
|
|
}
|
|
}
|
|
}
|
|
|
|
static String name() {
|
|
return "";
|
|
}
|
|
}
|
|
}
|