forked from OSchip/llvm-project
8 lines
161 B
C
8 lines
161 B
C
|
#ifndef H_H
|
||
|
#define H_H
|
||
|
#include "c.h"
|
||
|
#include "d.h" // expected-error {{use of a module not declared used}}
|
||
|
#include "h1.h"
|
||
|
const int h1 = aux_h*c*7*d;
|
||
|
#endif
|