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