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

}
