Without the submodule, the occurrence of stx-map is correctly linked.

This commit is contained in:
Georges Dupéron 2016-06-22 19:24:16 +02:00
parent 40c26708c8
commit 9747adce0f
2 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
#lang racket/base #lang racket/base
(require (submod "other.rkt" m)) (require "other.rkt")
(provide (all-from-out (submod "other.rkt" m))) (provide (all-from-out "other.rkt"))

View File

@ -1,5 +1,4 @@
#lang racket/base #lang racket/base
(module m racket/base
(require syntax/stx) (require syntax/stx)
(provide (all-from-out syntax/stx))) (provide (all-from-out syntax/stx))