blob: c3994e6c5275be97b1a78755518d7d0e11116647 [file] [log] [blame]
package p1;
import p.A;
public class A1 {
static void f(){
A.Inner i;
A.Inner.foo();
A.Inner.t = 2;
p.A.Inner.foo();
p.A.Inner.t = 2;
}
}