mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
21 lines
320 B
Java
21 lines
320 B
Java
interface I {
|
|
String getValue();
|
|
}
|
|
|
|
abstract class X implements I {
|
|
void foo() {
|
|
String <caret>s = <flown1>getValue();
|
|
}
|
|
}
|
|
|
|
class Y implements I {
|
|
public String getValue() {
|
|
return "Y";
|
|
}
|
|
}
|
|
|
|
class Impl extends X {
|
|
public String getValue() {
|
|
return <flown11>"Impl";
|
|
}
|
|
} |