package p;

class A {
	A(int b, int a){}
	
	void f(){
		new A(4, 1){
		};
	}
}