Skip to content

Commit

Permalink
fix invalid test for SRFI-210 that was fixed #288
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jan 25, 2024
1 parent 2758e78 commit a6f12d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/syntax.scm
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@
(foo () "x")
(t.is #t #t)))

(test.failing "syntax: recursive use of free variable hygiene #288"
(test "syntax: recursive use of free variable hygiene #288"
(lambda (t)
(define-syntax call/mv
(syntax-rules ()
Expand All @@ -1173,7 +1173,7 @@
(aux consumer (producer1 ...) ())))))


(t.is (call/mv string (values #\a #\b) (values #\c #\d)) (#\a #\b #\c #\d))))
(t.is (call/mv string (values #\a #\b) (values #\c #\d)) "abcd")))

(test "syntax: SRFI-147"
(lambda (t)
Expand Down

0 comments on commit a6f12d8

Please sign in to comment.