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