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