mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +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();
|
|
}
|
|
} |