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