
Cross-module optimization started inlining the `#f' value for the table that `raco exe' replaces.
6 lines
149 B
Racket
6 lines
149 B
Racket
(module runtime-path-table mzscheme
|
|
(provide table)
|
|
(define table #f)
|
|
;; So table definition is not inlined across modules:
|
|
(set! table #f))
|