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