blob: 61cd77a79d6b38f60b6d560c9270dd08c8c2f4a5 [file] [log] [blame]
package p;
public class A {
// move to B
private static class Inner {
private String a;
private void b() {}
}
{
new Inner().a= "";
new Inner().b();
}
}