blob: 55a9a310273a3d84fa6c037d69444a088a79fec5 [file] [log] [blame]
// @dart = 2.9
library test;
class A<T> {
A(B<List<T>> b);
}
class B<T> {}
main() {}