| library test /*isNonNullableByDefault*/; |
| // |
| // Problems in library: |
| // |
| // pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart:15:38: Error: A value of type 'String' can't be assigned to a variable of type 'int'. |
| // A.x = /*error:INVALID_ASSIGNMENT*/ "hi"; |
| // ^ |
| // |
| // pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart:16:38: Error: A value of type 'String' can't be assigned to a variable of type 'int'. |
| // B.y = /*error:INVALID_ASSIGNMENT*/ "hi"; |
| // ^ |
| // |
| import self as self; |
| import "dart:core" as core; |
| import "infer_from_variables_in_non_cycle_imports_with_flag2_a.dart" as inf; |
| |
| import "org-dartlang-testcase:///infer_from_variables_in_non_cycle_imports_with_flag2_a.dart"; |
| |
| class B extends core::Object { |
| static field core::int y = inf::A::x; |
| synthetic constructor •() → self::B |
| : super core::Object::•() |
| ; |
| } |
| static method test1() → dynamic { |
| inf::A::x = invalid-expression "pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart:15:38: Error: A value of type 'String' can't be assigned to a variable of type 'int'. |
| A.x = /*error:INVALID_ASSIGNMENT*/ \"hi\"; |
| ^" in "hi" as{TypeError,ForNonNullableByDefault} core::int; |
| self::B::y = invalid-expression "pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart:16:38: Error: A value of type 'String' can't be assigned to a variable of type 'int'. |
| B.y = /*error:INVALID_ASSIGNMENT*/ \"hi\"; |
| ^" in "hi" as{TypeError,ForNonNullableByDefault} core::int; |
| } |
| static method main() → dynamic {} |
| |
| library /*isNonNullableByDefault*/; |
| import self as inf; |
| import "dart:core" as core; |
| |
| class A extends core::Object { |
| static field core::int x = 2; |
| synthetic constructor •() → inf::A |
| : super core::Object::•() |
| ; |
| } |
| static method main() → dynamic {} |