blob: 0211b7ea57032c9e963e7afc3bd8e7c58c454571 [file] [log] [blame]
//renaming I.m to k
package p;
class A implements I{
public void m(){};
public void m(int y){};
}
interface I {
void m();
}