blob: 4615ebb1201550675e566d6f64b70fdf4399f1cc [file] [log] [blame]
library test;
abstract class A<T> {
void f(T x, int y);
}
abstract class C<T> extends B<F<T>> implements I<F<T>> {}
abstract class I<T> implements A<F<T>> {
void f(F<T> x, Object y);
}
class B<T> implements A<F<T>> {
void f(F<T> x, int y) {}
}
typedef void F<T>(T t);
void main() {}