bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/wildcard-submodule-exports/module.modulemap
2025-02-14 19:21:04 +01:00

20 lines
289 B
Text

module A {
module One { header "A_one.h" }
module Two { header "A_two.h" }
}
module B {
module One { header "B_one.h" }
module Two { header "B_two.h" }
}
module C {
module One {
header "C_one.h"
export A.*
}
module Two {
header "C_two.h"
export *
}
}