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