blob: 331b1e130c7e706e8f400018750a2f642e3270ba [file] [log] [blame]
// @dart = 2.9
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();