blob: 2c75d8f7ac43bee94a6b2fac627715001b26145e [file] [log] [blame]
// @dart = 2.9
library test;
abstract class A {
double get x;
}
abstract class B extends A {
void set x(value);
}
main() {}