blob: 9d56fff1ffe3277558a4173947a7ff86d903ce7a [file] [log] [blame]
// @dart = 2.9
library test;
T f<T>() => null;
class B<T> {
B(T t);
}
class C<U> extends B<List<U>> {
C() : super(f());
}
main() {}