blob: 7c15f17292244890a69065435d2eec97d879fb4c [file] [log] [blame]
library test;
class A {
B<int> b = throw '';
}
class B<T> {
B(T x);
}
main() {}
var t3 = [new B(3)];