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