blob: 635d516967f996822af4abc029d070d2227cb58f [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() {}