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

}
