blob: 9c6caddbf7bfda04aa8d468e906ceaa2aa633d3c [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 => throw '';
}
foo() {}
main() {}