Files
swift-mirror/test/NameLookup/Inputs/MemberImportVisibility/module.modulemap
Allan Shortlidge eba581eec2 AST: Add appropriate attributes to module import fix-its.
Make sure suggested imports are consistent with imports in other files. Also,
make sure the underlying clang module is always imported `@_exported`.
2024-04-16 16:29:51 -07:00

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 *
}