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