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