diff options
Diffstat (limited to 'tests/016/arith.tl')
-rw-r--r-- | tests/016/arith.tl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/016/arith.tl b/tests/016/arith.tl index 8f401463..86b5d9bb 100644 --- a/tests/016/arith.tl +++ b/tests/016/arith.tl @@ -401,3 +401,7 @@ (gcd-grind '(2 3 5 7 11 13 17 19 23)) (gcd-grind '(2 3 5 4294967291 4294967311 4294967357 4294967371)) + +(test + (build (each-prod* ((i '(b c)) (j (cons 'a i))) (add (list i j)))) + ((b a) (b b) (b c) (c a) (c b) (c c))) |