blob: 033ea814232226b73a643d7c3621d39ca92c5ffc [file] [log] [blame]
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() {}