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