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