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