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

8 lines
175 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
#ifndef H_H
#define H_H
#include "c.h"
#include "d.h" // expected-error {{module XH does not depend on a module exporting}}
#include "h1.h"
const int h1 = aux_h*c*7*d;
#endif