Files
swift-mirror/test/DebugInfo/Inputs/module.modulemap
Adrian Prantl c2b14dccd3 Debug info: Represent clang-imported submodules.
Previously an import of a submodule would emit debug info for
importing the root module.

<rdar://problem/17260802>
2017-05-03 08:33:55 -07:00

9 lines
122 B
Plaintext

module ClangModule {
header "ClangModule.h"
export *
module SubModule {
header "SubModule.h"
export *
}
}