mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
19 lines
254 B
Java
19 lines
254 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 name(<caret>);
|
|
}
|
|
}
|
|
|
|
public String name() {
|
|
return "";
|
|
}
|
|
}
|