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