Commit 4a838bf16fe7d247c4fbfed9941c853f61b04146

Thomas de Grivel 2024-02-11T13:52:16

test ic3 block

diff --git a/test/ic3/block.in b/test/ic3/block.in
index 8c741de..ef55ff0 100644
--- a/test/ic3/block.in
+++ b/test/ic3/block.in
@@ -38,3 +38,8 @@ do
   2 + 2
   3 + 3
 end
+quote do
+  1 + 1
+  2 + unquote 1 + 1
+  unquote 3 + 3
+end
diff --git a/test/ic3/block.out.expected b/test/ic3/block.out.expected
index 0dc82f7..9bd91a8 100644
--- a/test/ic3/block.out.expected
+++ b/test/ic3/block.out.expected
@@ -34,3 +34,8 @@ do
   3 + 3
 end
 6
+do
+  1 + 1
+  2 + 2
+  6
+end