blob: fb57224265538c64a24c6764c7ef897235958d4b [file] [log] [blame]
//renaming I.m to k
package p;
interface I {
void k();
}
interface I2 extends I{
void k();
}