mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
222 B
Java
15 lines
222 B
Java
// "Qualify the call with 'A.B.this'" "true-preview"
|
|
class A {
|
|
static class B {
|
|
class C {
|
|
String name(String key) {
|
|
return B.this.name();
|
|
}
|
|
}
|
|
|
|
String name() {
|
|
return "";
|
|
}
|
|
}
|
|
}
|