| Index: pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.strong.expect b/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8d3ac0ccdf50e1fab7dcd8a10dc27a0e79d77f33
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.strong.expect
|
| @@ -0,0 +1,17 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +import "./infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart" as inf;
|
| +
|
| +class B extends core::Object {
|
| + static field core::int y = inf::A::x;
|
| + constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| +}
|
| +static method test1() → dynamic {
|
| + core::int t = 3;
|
| + t = inf::A::x;
|
| + t = self::B::y;
|
| +}
|
| +static method main() → dynamic {}
|
|
|