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