mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
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 *
|
|
}
|