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