Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / declare-use / j.h
blob04d46a9fb2b7d92d88a4995a30de23ea06294e6c
1 #ifndef J_H
2 #define J_H
4 #define STR(x) #x
5 #define HDR(x) STR(x.h)
7 #include ALLOWED_INC
8 #include HDR(a)
10 const int j = a * a + b;
12 // expected-no-diagnostics
14 #endif