blob: dddd152064d13111bb42a63f87b04bb5407aec0f [file] [log] [blame]
package p;
public class B {
B(B A){}
B A(B A){
A= new B(new B(A));
return A;
}
}