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
/
unavailable-local-visibility
/
b.h
blob
71360e38b7b1c8822da6fb0ed49265e6dff5992a
1
#ifndef B_H
2
#define B_H
3
#include
"a.h"
4
5
#ifndef A_H
6
#error where is a?
7
#endif
8
9
#ifndef X_H
10
#error where is x?
11
#endif
12
X
f
();
13
#endif