blob: 17812e9d57c517cf982b4bc59451a118697ad84d [file] [log] [blame]
library test;
import 'infer_type_regardless_of_declaration_order_or_cycles_b.dart';
class A {
int get x => 0;
}
class C extends B {
get x => null;
}
foo() {}
main() {}