blob: 78d981fa04c67894f02332918b8fe4d91fbb4f2c [file] [log] [blame]
library test;
typedef void F<T>(T t);
class B<T> {
T f(int x) => throw '';
}
abstract class I<T> {
T f(Object x);
}
abstract class C<T> extends B<F<T>> implements I<F<T>> {}
void main() {}