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