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