Commit 715ba99102eb0da1df59e5c62c0afee5168ec04b

Thomas de Grivel 2024-07-08T12:44:21

test/ic3/access fix test

diff --git a/test/ic3/access.in b/test/ic3/access.in
index 282fc78..8b23b12 100644
--- a/test/ic3/access.in
+++ b/test/ic3/access.in
@@ -11,6 +11,8 @@ quote %{a: %{b: %{c: 1}}}.a.b
 quote %{a: %{b: %{c: 1}}}.a.b.c
 %{a: %{b: %{c: 1}}}.a.b.c
 quote map = %{a: %{b: %{c: 1}}}
+map = %{a: %{b: %{c: 1}}}
+quote map
 map
 quote map.a
 map.a
diff --git a/test/ic3/access.out.expected b/test/ic3/access.out.expected
index 442fa6f..c44bbbe 100644
--- a/test/ic3/access.out.expected
+++ b/test/ic3/access.out.expected
@@ -12,6 +12,8 @@
 1
 map = %{a: %{b: %{c: 1}}}
 %{a: %{b: %{c: 1}}}
+map
+%{a: %{b: %{c: 1}}}
 map.a
 %{b: %{c: 1}}
 map.a.b