blob: 5135075f9da3f0fba926c09ae17d8fdf68533064 [file] [log] [blame]
package p;
public class A {
Inner i;
A.Inner ii;
p.A.Inner iii;
static class Inner {
Inner buddy;
public Inner(A.Inner other) {
buddy= other;
}
}
}
class AA {
A.Inner Inner;
}