diff options
Diffstat (limited to 'tests/011')
-rw-r--r-- | tests/011/patmatch.tl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/011/patmatch.tl b/tests/011/patmatch.tl index 1d06b252..7d0482b2 100644 --- a/tests/011/patmatch.tl +++ b/tests/011/patmatch.tl @@ -84,3 +84,7 @@ (test (when-match (@(and @a @b) (x . @c)) '(1 (x 2 3 4)) c) (2 3 4)) (test (when-match (@(some @a) . @b) '((1 2 3) 2) (list a b)) (1 (2))) + +(set *print-circle* t) + +(test (when-match @(let a @(some @a)) '#1=(1 2 #1# 3) :yes) :yes) |