blob: 002896de4b35fc08c6bd775673b8500b4a927851 [file] [log] [blame]
library test;
import 'dart:async';
T f<T>() => throw '';
class D<T> {}
class E<T> extends D<T> {}
class B<T> {
D<T> g(E<T> x) => throw '';
}
class C<U> extends B<Future<U>> {
E<Future<U>> g(Object x) => throw '';
void h() {}
}
main() {}