blob: 1a02e51faa6a94edfc392710900dd964a9342c4f [file] [log] [blame]
library test;
T f<T>() => null;
abstract class A {
void x(F value);
}
abstract class B extends A {
void x(value());
}
g(B b) {}
main() {}
typedef int F();