xref: /llvm-project/clang/test/Modules/Inputs/declare-use/j.h (revision 98a9a6c6674f0a2aded55a89f6b6d0ef52ab145d)
1 #ifndef J_H
2 #define J_H
3 
4 #define STR(x) #x
5 #define HDR(x) STR(x.h)
6 
7 #include ALLOWED_INC
8 #include HDR(a)
9 
10 const int j = a * a + b;
11 
12 // expected-no-diagnostics
13 
14 #endif
15