blob: 183a5c1215ec778dab9a8eb3258a156b371683ca [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() {}