repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
wildcard-submodule-exports
/
module.map
blob
64b0d895299ca7a03cba43b4ba4096e22300e2ef
1
module A {
2
module One { header "A_one.h" }
3
module Two { header "A_two.h" }
4
}
5
6
module B {
7
module One { header "B_one.h" }
8
module Two { header "B_two.h" }
9
}
10
11
module C {
12
module One {
13
header "C_one.h"
14
export A.*
15
}
16
module Two {
17
header "C_two.h"
18
export *
19
}
20
}