| Index: pkg/front_end/testcases/inference/simple_literal_string.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/simple_literal_string.dart.strong.expect b/pkg/front_end/testcases/inference/simple_literal_string.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..97577e264e6cfb69a3c6348920d5924833e2fbbf
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/simple_literal_string.dart.strong.expect
|
| @@ -0,0 +1,10 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +static field core::String topSimple = "aaa";
|
| +static field core::String topInterpolation = "b ${self::topSimple} bbb";
|
| +static method main() → dynamic {
|
| + core::String localSimple = "ccc";
|
| + core::String localInterpolation = "d ${localSimple} ddd";
|
| +}
|
|
|