blob: 878e7286fdaca5a6d87a2b179c67d210457a3243 [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() {}