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
/
shadowed-submodule
/
A2
/
module.modulemap
blob
c4e44b074aa14a6f098b326218cd4e6f63a433dd
1
module A [system] {
2
module sub {
3
header "sys/A.h"
4
}
5
module sub2 { // expected-error {{build a shadowed submodule 'A.sub2'}}
6
header "sys/A2.h"
7
}
8
module stdarg {
9
header "stdarg.h"
10
export *
11
}
12
}
13
14
module A2 {}