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