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