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