blob: 2c719f5407c7308f0f4bbeff4ad4e70f6ae602a3 [file] [log] [blame]
library test;
abstract class A {
int get x;
}
class B extends A {
B(this.x);
final x;
}
main() {}