blob: a6285d032ec0b9dd16c8f571b759e495a95c45bb [file] [log] [blame]
//nor ref update
package p;
//renaming I.m to k
interface I {
void k();
}
class C1 implements I{
public void m(){};
}
class D{
void h(){
I a= new C1();
a.m();
}
}
class NotRel{
public void m(){};
void f(){
m();
}
}