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