blob: b3dc442726e7bdfe1f14bb0c5c2eab54be23be8e [file] [log] [blame]
package p;
class Inner {
private A a;
/**
* @param A
*/
Inner(A a) {
this.a= a;
// TODO Auto-generated constructor stub
}
void f(){
this.a.i= 1;
}
}