Index: pkg/front_end/testcases/inference/map_literals_can_infer_null.dart.direct.expect |
diff --git a/pkg/front_end/testcases/inference/map_literals_can_infer_null.dart.direct.expect b/pkg/front_end/testcases/inference/map_literals_can_infer_null.dart.direct.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ba57d255dee1ae173b520f1827d6e111020ce5af |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference/map_literals_can_infer_null.dart.direct.expect |
@@ -0,0 +1,8 @@ |
+library test; |
+import self as self; |
+ |
+static method test1() → dynamic { |
+ dynamic x = <dynamic, dynamic>{null: null}; |
+ x.[]=(3, "z"); |
+} |
+static method main() → dynamic {} |