blob: d5f28ce25c368ae36b74da71b5bce3dc73ef23f7 [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() {}