Files
swift-mirror/test/DebugInfo/Inputs/module.modulemap
Adrian Prantl 6a412bd2f5 Debug Info: Fix a bug when decoding the source file for a Clang Decl
that was defined using a Macro: Use the file of the presumed location,
not of the SourceBuffer.

rdar://problem/49181568
2019-03-26 14:16:11 -07:00

23 lines
307 B
Plaintext

module ClangModule {
header "ClangModule.h"
export *
module SubModule {
header "SubModule.h"
export *
}
}
module OtherClangModule {
header "OtherClangModule.h"
export *
explicit module SubModule {
header "OtherSubModule.h"
export *
}
}
module Macro {
header "Macro.h"
}