class C { C(int j) { } } class C1 extends C { int i; C1(int i, int k) { super(27); this.i = i; } }