brintos

brintos / llvm-project-archived public Read only

0
0
Text · 167 B · 04d46a9 Raw
15 lines · c
1#ifndef J_H2#define J_H3 4#define STR(x) #x5#define HDR(x) STR(x.h)6 7#include ALLOWED_INC8#include HDR(a)9 10const int j = a * a + b;11 12// expected-no-diagnostics13 14#endif15