blob: 26a79f9d013c799d2d79384a44cc97e6954f4f6c [file] [log] [blame]
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();
}
}