blob: 9702395b291767131c9c7f674a8b5a0603e46d71 [file] [log] [blame]
library test;
class C<T> extends D<T> {
f<U>(x) {}
}
class D<T> {
F<U> f<U>(U u) => null;
}
typedef void F<V>(V v);
main() {}