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