//renaming I.m to k
package p;
interface I{
void m();
}

class A1 implements I{
public void m(){}
}
interface I1{
void m();
}