blob: 2421964f53584c87d076f2deb115867652c73539 [file] [log] [blame]
// @dart = 2.9
library test;
abstract class D<T> {
void f<U>(G<U> g);
}
class C<T> extends D<T> {
f<U>(g) => null;
}
main() {}
typedef List<V> G<V>();