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