Files
swift-mirror/test/Index/Store/Inputs/module.modulemap
David Farler 645aaad551 [index/build] Upstream indexing while building changes
This patch upstreams previously AppleInternal changes for
indexing while building.
2017-06-29 16:20:06 -07:00

21 lines
278 B
Plaintext

module ClangModuleA {
header "ClangModuleA.h"
export *
}
module ClangModuleB {
header "ClangModuleB.h"
export *
}
module ClangModuleC {
module Sub1 {
header "ClangModuleCSub1.h"
export *
}
module Sub2 {
header "ClangModuleCSub2.h"
export *
}
}