//renaming A.m to k 
package p;

class A{
	void k(){}
	static {
		new A().k();
	}
}