blob: 4191a0134573e5bad201936ccec7076d3db36788 [file] [log] [blame]
// @dart = 2.9
library test;
class A<T> {
A(T x);
}
main() {}
var t1 = <A<int>>[new A(1)];