mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
121fa9a058
This behavior change reduces the chance of unexpected and unwanted cross-imports being performed. Fixes rdar://problem/60554019.
15 lines
238 B
Plaintext
15 lines
238 B
Plaintext
module ClangLibrary {
|
|
header "clang_library.h"
|
|
module Submodule {
|
|
header "clang_library_submodule.h"
|
|
}
|
|
}
|
|
module core_mi6 {
|
|
header "core_mi6.h"
|
|
export *
|
|
}
|
|
module UniversalExports {
|
|
header "universal_exports.h"
|
|
export *
|
|
}
|