blob: 46dfa95dd0adc25055d7c1f4ef6a742b22407f8f [file] [log] [blame]
// @dart = 2.9
library test;
class C<T> {
C(this.t);
C.named(List<T> t) : this(t[0]);
T t;
}
main() {}