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

8 lines
102 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
#ifndef E_H
#define E_H
#define HEADER "a.h"
#include HEADER
#include "b.h"
const int e = a*b;
#endif