blob: fe58fcb12b38045acc476e04c537249d8a0049ae [file] [log] [blame]
// @dart = 2.9
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() {}