summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/012/quasi.tl8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/012/quasi.tl b/tests/012/quasi.tl
index 4c017b62..7511d4bd 100644
--- a/tests/012/quasi.tl
+++ b/tests/012/quasi.tl
@@ -13,3 +13,11 @@
(let ((a "abc") (b 123))
[(ret `@1-@2-@@1-@@2-@{@1 -4}-@{@2 -4}`) a b])
"abc-123-abc-123- abc- 123")
+
+(test
+ [(ret `@1-@rest`) 1 2 3 4]
+ "1-2 3 4")
+
+(test
+ [(ret `@1-@@rest`) 1 2 3 4]
+ "1-2 3 4")