blob: 7b738b709d5970a932d28c5ecb2f6688465f0fab [file] [log] [blame]
// @dart = 2.9
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() {}