blob: 209314b9bc8bb16d4936c846c83b60bfe4bf41e5 [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>() => throw '';
g(B b) {}
main() {}