blob: 705620504e915d1e89f233775c9d68f3ff94154b [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 V F<V>();
main() {}