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