blob: 0c603859711efc72842d848b405674894b56a15d [file] [log] [blame]
library test;
class A<T> {
A(T x);
}
var t1 = <A<int>>[new A(1)];
main() {}