mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
14 lines
181 B
Java
14 lines
181 B
Java
interface A {
|
|
void xxx();
|
|
}
|
|
|
|
class B implements A {
|
|
public void xxx() {
|
|
System.out.println(<selection>239</selection>);
|
|
}
|
|
|
|
static {
|
|
A a = new B();
|
|
a.xxx();
|
|
}
|
|
} |