summaryrefslogtreecommitdiffstats
path: root/tests/012/op.tl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/012/op.tl')
-rw-r--r--tests/012/op.tl8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/012/op.tl b/tests/012/op.tl
index 12969dcc..0cdc3e7b 100644
--- a/tests/012/op.tl
+++ b/tests/012/op.tl
@@ -74,3 +74,11 @@
(mtest
(flow 1 (+ 2) [dup *] (let ((x @1)) x)) 9
(flow #S(time year 2021) .year succ) 2022)
+
+(mtest
+ [[(do op list)] 2] :error
+ [[(do op list) 2]] (2)
+ [[(do op list @@1) 1] 2] (1 2)
+ [[(do op list @1)] 2] :error
+ [[(do op list @1) 1] 2] (2 1)
+ [[(do op list @@1 @1) 1] 2] (1 2))