package p;
class Inner{
	/** Comment */
	private A a;
	Inner(A a){
		this(a, 0);
	}
	Inner(A a0, int i){
		super();
		this.a = a0;
	}
}