xref: /llvm-project/clang/test/Modules/Inputs/unavailable-local-visibility/b.h (revision 841dbda3ba74ee5a2daa3037d78a877900bde339)
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
14