blob: 99aa0ee90f94d7493b8234ad9d944c89c990ef4c [file] [log] [blame]
library test;
class C<T> extends D<T> {
f<U>(x) {}
}
class D<T> {
F<U> f<U>(U u) => null;
}
typedef V F<V>();
main() {}