blob: 3c20966a4fd38b70c6238e7cf64bb148f7bd7876 [file] [log] [blame]
package p;
public class A {
private static class SomeInner {
private static String a;
// move to top
private static class Inner {
private String b= a;
}
}
{
new SomeInner.Inner().b= "";
}
}