blob: 2e9f294d9becfcc5a74b99dd87c03698e04321bf [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 '';
}
typedef void F<V>(V v);
main() {}