blob: 51db6abd29649716fc72ae923eaf928e5711f953 [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() {}