public class Inner
{
	/** Comment */
	private A a;

	Inner(A a) {
		this.a= a;
		this.a.f= 1;
	}
}