blob: 02a7aa4775355e4a7e252b2b4ced7b760d4b6d38 [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();