blob: 1669140a1eee83a6b349e7cd80ed3a77bf64fe32 [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 V F<V>();