aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/declare-use/h.h
blob: 379e50180ca19964edb164de8d4c7ca3257ab543 (plain) (blame)
1
2
3
4
5
6
7
#ifndef H_H
#define H_H
#include "c.h"
#include "d.h" // expected-error {{does not depend on a module exporting}}
#include "h1.h"
const int h1 = aux_h*c*7*d;
#endif