blob: 833cebf0427d5a670447a26cb983ae224236121b [file] [log] [blame]
//renaming A.m to k
package p;
class A{
void k(){}
static {
new A().k();
}
}