xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/declare-use/h.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 #ifndef H_H
2 #define H_H
3 #include "c.h"
4 #include "d.h" // expected-error {{use of a module not declared used}}
5 #include "h1.h"
6 const int h1 = aux_h*c*7*d;
7 #endif
8