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