blob: 289c1feb4f53f4a59bd43df1a0c110fb80dc8e6a [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>() => null;
g(B b) {}
main() {}