blob: 9fe652da4893ecb97ae285df33400a4685090925 [file] [log] [blame]
// "Use existing implementation of 'm'" "true"
enum I {
A,
B {
public void m() {
System.out.println("");
}
};
abstract void <caret>m();
}