mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
260 B
Java
16 lines
260 B
Java
class A {
|
|
void foo() {
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
}
|
|
}
|
|
class AImpl1 extends A{
|
|
}
|
|
|
|
class AImpl2 extends A {
|
|
void bar() {
|
|
foo();
|
|
}
|
|
} |