New test case, still does not work

This commit is contained in:
Justin Ethier 2017-12-06 13:12:38 -05:00
parent f561428d7e
commit 344eb59381

14
tests/let-syntax-298.scm Normal file
View file

@ -0,0 +1,14 @@
;; From:
;; https://github.com/ashinn/chibi-scheme/issues/298
(import (scheme base))
(define-syntax bar
(syntax-rules ()
((_)
(let-syntax ((foo (syntax-rules () ((_) 'ok))))
(foo)))))
(define-syntax foo (syntax-rules ()))
(bar)
(foo)