mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 01:25:40 +07:00
10 lines
104 B
Java
10 lines
104 B
Java
class Foo {
|
|
|
|
protected void foo(){}
|
|
}
|
|
|
|
class FooImpl extends Foo {
|
|
void bar() {
|
|
foo();
|
|
}
|
|
} |