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