Skip to content
Snippets Groups Projects
Commit 6c356414 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

tests: Avoid sequence of zero expressions.

* tests/records.scm ("define-record-type* with let* behavior"): Add missing
  body for clause.
parent ad7c1a2c
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ (define-record-type* <bar> bar make-bar ...@@ -56,7 +56,7 @@ (define-record-type* <bar> bar make-bar
(and (match (bar (x 1) (y (+ x 1)) (z (* y 2))) (and (match (bar (x 1) (y (+ x 1)) (z (* y 2)))
(($ <bar> 1 2 4) #t)) (($ <bar> 1 2 4) #t))
(match (bar (x 7) (z (* x 3))) (match (bar (x 7) (z (* x 3)))
(($ <bar> 7 42 21))) (($ <bar> 7 42 21) #t))
(match (bar (z 21) (x (/ z 3))) (match (bar (z 21) (x (/ z 3)))
(($ <bar> 7 42 21) #t))))) (($ <bar> 7 42 21) #t)))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment