blob: 1b7bfe1dc6edbf11d063620f676851855eb0d554 [file] [log] [blame]
library test;
abstract class B implements C {
get x;
}
abstract class C {
int get x;
}
class A implements B {
get x => f();
}
dynamic f() => null;
main() {}