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