blob: 5c360c19c4893df9b0dd8677eaaf80f7f01ea71e [file] [log] [blame]
library test;
class A {
late B<int> b;
}
class B<T> {
B(T x);
}
main() {}
var t1 = new A()..b = new B(1);
var t2 = <B<int>>[new B(2)];