blob: fbd6ec8ee0051517c4036d1d2216a965b604d3ce [file] [log] [blame]
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>();