~ chicken-core (master) /tests/reexport-m3.scm
Trap1;;; export syntax with implicit value export (reexport-test-2.scm)
2(module
3 reexport-m3
4 ((foo bar))
5 (import scheme chicken.base)
6 (define (bar) 1)
7 (define-syntax foo
8 (ir-macro-transformer
9 (lambda (e i c)
10 `(bar)))))