blob: 3c49c2f76899bf18f80309f4b5bd02685cf6faeb [file] [log] [blame]
// @dart = 2.9
library test;
class C<T> extends D<T> {
f<U>(x) {}
}
class D<T> {
F<U> f<U>(U u) => null;
}
main() {}
typedef void F<V>(V v);