*** 26,11 *** class Base { Base(int i) { } } class CantRefBeforeConstr extends Base { ! int i; CantRefBeforeConstr() { super(i); } } --- 26,11 --- class Base { Base(int i) { } } class CantRefBeforeConstr extends Base { ! int i = 0; CantRefBeforeConstr() { super(i); } }