blob: 9eae54abdf7a64b664fef01183f3a98f8cd1991b [file] [log] [blame]
class S<T> {
num n;
T t;
S(this.n, this.t);
S.named(this.t, this.n);
}
class C<T> extends S<T> {
C.constr1(super.n, String s, super.t);
C.constr2(int i, super.n, String s, super.t) : super();
C.constr3(int i, super.t, String s, super.n) : super.named();
}
main() {}