blob: 50b8be8b60564ceae7f77d14defd490b8724fb29 [file] [log] [blame]
// @dart = 2.9
library test;
abstract class C<T> extends B<F<T>> implements I<F<T>> {}
abstract class I<T> {
void f(F<T> x, Object y);
}
class B<T> {
void f(F<T> x, int y) {}
}
typedef void F<T>(T t);
void main() {}