1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 21:40:33 +02:00

* tests/syntax.test ("let*"): Changed the `duplicate bindings'

test, dups are allowed in `let*' and are now expected to pass.
This commit is contained in:
Martin Grabmüller 2001-03-09 09:44:26 +00:00
parent fff043abc0
commit 880c285882
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* tests/syntax.test ("let*"): Changed the `duplicate bindings'
test, dups are allowed in `let*' and are now expected to pass.
2001-03-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
* lib.scm (run-test-exception): Preserve the original error's

View file

@ -219,9 +219,8 @@
(with-test-prefix "duplicate bindings"
(pass-if-exception "(let* ((x 1) (x 2)) x)"
exception:duplicate-bindings
(let* ((x 1) (x 2)) x))))
(pass-if "(let* ((x 1) (x 2)) x)"
(let* ((x 1) (x 2)) #t))))
(with-test-prefix "letrec"