mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
that was defined using a Macro: Use the file of the presumed location, not of the SourceBuffer. rdar://problem/49181568
23 lines
307 B
Plaintext
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"
|
|
}
|
|
|