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