mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 00:01:54 +07:00
12 lines
125 B
Java
12 lines
125 B
Java
class Foo {
|
|
void foo(){}
|
|
void bar() {
|
|
foo();
|
|
}
|
|
}
|
|
|
|
class FooImpl extends Foo {
|
|
void foo() {
|
|
super.foo();
|
|
}
|
|
} |