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