class Test { static class A { private int a; A(final int a) {} } static class B extends A { B() { super(a); } } }