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