mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-12 07:17:37 +02:00
New test case, still does not work
This commit is contained in:
parent
f561428d7e
commit
344eb59381
1 changed files with 14 additions and 0 deletions
14
tests/let-syntax-298.scm
Normal file
14
tests/let-syntax-298.scm
Normal 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)
|
Loading…
Add table
Reference in a new issue