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