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

8 lines
102 B
C

#ifndef E_H
#define E_H
#define HEADER "a.h"
#include HEADER
#include "b.h"
const int e = a*b;
#endif