blob: a29ff9d6bae2b755e6c97d57c0865066810320e8 [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);