blob: 4aacb07638302d49db5df41f7bffb4d8a3216f7c [file] [log] [blame]
library test;
import 'dart:async';
T f<T>() => throw '';
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() {}
}
class D<T> {}
class E<T> extends D<T> {}
main() {}