mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
21 lines
278 B
Plaintext
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 *
|
|
}
|
|
}
|