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