You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
175 B
8 lines
175 B
4 months ago
|
#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
|