blob: 4b8563e496acefd10d502ee531a423826d12bead [file] [log] [blame]
//renaming I.m to k
package p;
interface I{
void k();
}
class A1 implements I{
public void k(){}
}
interface I1{
void m();
}