blob: 9923cc6a41cc35e56d8d8cf99fc8906c12c5a716 [file] [log] [blame]
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() {}