summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2022-11-19 23:20:46 +0100
committerLeah Neukirchen <leah@vuxu.org>2022-11-19 23:20:46 +0100
commitaff9a08de8df4d050ff0bcb007c25dcb30997327 (patch)
treef16938bc87599f779b506ce3a9608ef603adfecb /tests
parenta06b95c052b4e70fe6fe61f7d90874fb6be00b56 (diff)
downloadmew-aff9a08de8df4d050ff0bcb007c25dcb30997327.tar.gz
mew-aff9a08de8df4d050ff0bcb007c25dcb30997327.tar.xz
mew-aff9a08de8df4d050ff0bcb007c25dcb30997327.zip
proj: allow multiple arguments
Diffstat (limited to 'tests')
-rw-r--r--tests/test.mew2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test.mew b/tests/test.mew
index 52de20a..9220312 100644
--- a/tests/test.mew
+++ b/tests/test.mew
@@ -508,6 +508,8 @@
   (test 1 ((proj 0) 1 2 3))
   (test 2 ((proj 1) 1 2 3))
   (test 3 ((proj 2) 1 2 3))
+  (test '(3 2) (receive ((proj 2 1) 1 2 3)))
+  (test '() (receive ((proj) 1 2 3)))
   (test-error ((proj 4) 1 2 3)))
 
 (test-group "fail"