blob: 6a309d6fc39c75eac68fcecd31cabe41b1d141e2 [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;
}
}