mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
22 lines
308 B
Java
22 lines
308 B
Java
abstract class A {
|
|
void xxx() {
|
|
xxx(239);
|
|
}
|
|
|
|
abstract void xxx(final int anObject);
|
|
}
|
|
|
|
class B implements A {
|
|
public void xxx() {
|
|
xxx(239);
|
|
}
|
|
|
|
public void xxx(final int anObject) {
|
|
System.out.println(anObject);
|
|
}
|
|
|
|
static {
|
|
A a = new B();
|
|
a.xxx();
|
|
}
|
|
} |