blob: 5acc86c650cc110e4811af7f55cc3743c0696039 [file] [log] [blame]
class C {
C(int j) {
}
}
class C1 extends C {
int i;
C1(int i, int k) {
super(27);
this.i = i;
}
}