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