bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/declare-use/e.h
2025-02-14 19:21:04 +01:00

7 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