*** 22,15 *** */ // key: compiler.err.cant.ref.before.ctor.called class Base { Base(int i) { } } class CantRefBeforeConstr extends Base { - int i; - CantRefBeforeConstr() { super(i); } } --- 22,14 --- */ // key: compiler.err.cant.ref.before.ctor.called class Base { + int i; Base(int i) { } } class CantRefBeforeConstr extends Base { CantRefBeforeConstr() { super(i); } }