blob: 24061477d7b6f8b693c43944819fcf794425184c [file] [log] [blame]
package p;
public class A {
// move to B
private static String a;
// move to B
private static class C {
}
{
a = "";
B.b();
C c = new C();
}
}