﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	difficulty
219	reexport with renaming fails when import libraries are used	felix winkelmann	sjamaan	"In the following code `s2` in the expansion of `s1` will not be found when `foo1` is used via an import library:

{{{
(module foo *
(import scheme)
(define-syntax s1 
  (syntax-rules () ((_) (s2))))
(define-syntax s2 
  (syntax-rules () ((_) (display 1)))))

(module foo1 ()
(reexport (prefix foo f:)))
}}}

{{{
(import foo1)
(f:s1)
}}}
"	defect	closed	major	4.9.0	expander		fixed	syntax		
