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'" "false"
|
|
class A {
|
|
static class B {
|
|
String name(String key) {
|
|
return name(<caret>);
|
|
}
|
|
}
|
|
|
|
String name(){
|
|
return "";
|
|
}
|
|
}
|