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