Opened 14 years ago
Closed 13 years ago
#865 closed defect (fixed)
modules: * export breaks when trying to export variables from imported modules
| Reported by: | megane | Owned by: | felix winkelmann |
|---|---|---|---|
| Priority: | minor | Milestone: | 4.9.0 |
| Component: | unknown | Version: | 4.7.x |
| Keywords: | Cc: | ||
| Estimated difficulty: |
Description
This is a variation of #843.
I have attached a possible patch for this.
;; Works (module bar * (import chicken scheme) (define b 2)) (module foo () (import chicken scheme) (import bar) (export b) ) (import foo) (print b) ;; Doesn't work (module bar2 * (import chicken scheme) (define b2 2)) (module foo2 * (import chicken scheme) (import bar2) (export b2) ) (import foo2) (print b2) ;; <- Error: unbound variable: b2
Attachments (1)
Change History (3)
by , 14 years ago
comment:1 by , 13 years ago
| Owner: | set to |
|---|---|
| Status: | new → assigned |
comment:2 by , 13 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
