blob: 4a9f91200c5bfc07ef6babe1517e385d63033a2b [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();