blob: e22b0b3c41a950e81ae7e7caf8e7ce0a082027a5 [file] [log] [blame]
// "Use existing implementation of 'm'" "true"
interface I {
void m();
}
class A implements I {
public void m() {
System.out.println("code");
}
}
class B implements I {
public void m() {
<selection>System.out.println("code");</selection>
}
}