blob: 255c6b9cbd5b780d4fccefcfdfaa726ae7c45e45 [file] [log] [blame]
//renaming I.m to k
package p;
interface I{
void m();
}
class A1 implements I{
public void m(){}
}
interface I1{
void m();
}