blob: b85dfa1e0e70cd993b8a6f5fe9f07977924e4ad5 [file] [log] [blame]
//renaming I.m to k
package p;
class B implements I{
public void m(){};
}
class A extends B{
public void m(){};
}
interface I {
void m();
}