package p;
class Inner{

	/** Comment */
	private A a;

	/**
	 * @param a
	 */
	Inner(A a0) {
		this.a = a0;
	}
}