llvm-for-llvmta/tools/clang/test/Modules/Inputs/wildcard-submodule-exports/module.map

21 lines
289 B
Plaintext
Raw Normal View History

2022-04-25 13:02:35 +02:00
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 *
}
}