blob: 2e6c20d8d282a1a54713d1fa52f7da2c372a98d9 [file] [log] [blame]
interface A {
void xxx();
}
class B implements A {
public void xxx() {
System.out.println(<selection>239</selection>);
}
static {
A a = new B();
a.xxx();
}
}