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