blob: 92ce5c1ab635eefda2f49345ae7909db768966c9 [file] [log] [blame]
package p;
import p.A.SomeInner;
public class B {
private static class InnerTarget {
}
// move to B
// should increase visibility of a, b, Inner, SomeInner
static class Inner {
String b= SomeInner.a;
}
}