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

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