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