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