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