blob: 3ab13ad3aa58893eedcf0ee9ecd66d5f4bedbd5b [file] [log] [blame]
// @dart = 2.9
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() {}