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