blob: 010a7dbb880e3a9f9f5052e81a90951b26cb063c [file] [log] [blame]
library test;
class C<T> {
C(this.t);
C.named(List<T> t) : this(t[0]);
T t;
}
main() {}