mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Make sure suggested imports are consistent with imports in other files. Also, make sure the underlying clang module is always imported `@_exported`.
30 lines
378 B
Plaintext
30 lines
378 B
Plaintext
module Categories_A {
|
|
header "Categories_A.h"
|
|
export *
|
|
}
|
|
|
|
module Categories_B {
|
|
header "Categories_B.h"
|
|
export *
|
|
}
|
|
|
|
module Categories_C {
|
|
header "Categories_C.h"
|
|
export *
|
|
}
|
|
|
|
module Categories_D {
|
|
header "Categories_D.h"
|
|
export *
|
|
|
|
explicit module Submodule {
|
|
header "Submodule.h"
|
|
export *
|
|
}
|
|
}
|
|
|
|
module Underlying {
|
|
header "Underlying.h"
|
|
export *
|
|
}
|