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