mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
18 lines
373 B
Java
18 lines
373 B
Java
class A {}
|
|
class AImpl1 extends A{
|
|
void f<caret>oo() {
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
}
|
|
}
|
|
|
|
class AImpl2 extends A {
|
|
void bar() {
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
System.out.println("hello");
|
|
}
|
|
} |