blob: 3907122994e1c500707d085c3bdf7e53bbf591ec [file] [log] [blame]
import static java.lang.Math.cos;
public class Inner
{
/** Comment */
private A a
Inner(A a) {
this.a= a;
int f= this.a.foo();
int g= this.a.bar();
double d= cos(0);
}
}