blob: c4f1649794560139bcff3e1bbb1f93928c938ef8 [file] [log] [blame]
// class qualify referenced type name to top level, original receiver not used in method
package p1;
import p2.B;
public class Nestor {
public static class Nestee {
public static int fgN;
}
public void m(B b) {
Nestee n= null;
int i= Nestee.fgN;
}
}