blob: adba59556f8d4ddccbdf9236a647db18030b063f [file] [log] [blame]
Daniel Jasperddd2dfc2013-09-24 09:14:14 +00001// RUN: rm -rf %t
Stephen Hines651f13c2014-04-23 16:59:28 -07002// RUN: %clang_cc1 -fmodule-maps -fmodules-cache-path=%t -fmodules-decluse -fmodule-name=XG -I %S/Inputs/declare-use %s -verify
Daniel Jasperddd2dfc2013-09-24 09:14:14 +00003
4#include "g.h"
5#include "e.h"
Stephen Hines651f13c2014-04-23 16:59:28 -07006#include "f.h" // expected-error {{module XG does not depend on a module exporting 'f.h'}}
7#include "i.h"
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07008#include "sub.h"
9const int g2 = g1 + e + f + aux_i + sub;