| Index: pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart.strong.expect b/pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8973566ce88748fb067b044911c78681725a016e
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart.strong.expect
|
| @@ -0,0 +1,16 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +import "./infer_from_variables_in_non_cycle_imports_with_flag2_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 {
|
| + inf::A::x = "hi";
|
| + self::B::y = "hi";
|
| +}
|
| +static method main() → dynamic {}
|
|
|