blob: 3ce594a19e5d9ddb9f4cd309aa09f3425036d3e3 [file] [log] [blame]
class Test {
private static class A {
private B b = new B();
public A() {
}
private class B {
}
}
}