blob: 250fada4772e0e92d391fb0e66ccf2d93e6be356 [file] [log] [blame]
library test;
abstract class A {
double get x;
}
abstract class B extends A {
void set x(value);
}
main() {}