blob: a8b0d513a98fc23f16727b7052d4b350d023cc19 [file] [log] [blame]
package p;
public class B {
static class Inner {
Inner buddy;
public Inner(B.Inner other) {
buddy= other;
}
}
B.Inner iFromB;
}