llvm-for-llvmta/tools/clang/test/Modules/Inputs/declare-use/j.h

15 lines
167 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
#ifndef J_H
#define J_H
#define STR(x) #x
#define HDR(x) STR(x.h)
#include ALLOWED_INC
#include HDR(a)
const int j = a * a + b;
// expected-no-diagnostics
#endif