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