blob: 2c113e21d33d30334bbae2f47eeda3a47ae13955 [file] [log] [blame]
package p;
//renaming I.m to k
interface I {
void m();
}
class AQ implements I{
public void m(){}
}
class AQE extends AQ{
public void m(){
super.m();
}
}