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