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