mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
20 lines
269 B
Java
20 lines
269 B
Java
interface A {
|
|
void xxx();
|
|
|
|
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();
|
|
}
|
|
} |