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