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