blob: a8b5248b85166024de42c48ddeff03e15684906d [file] [log] [blame]
Daniel Jasper962b38e2014-04-11 11:47:45 +00001// RUN: rm -rf %t
Richard Smith47972af2015-06-16 00:08:24 +00002// RUN: %clang_cc1 -fimplicit-module-maps -fmodules-cache-path=%t -fmodules-strict-decluse -fmodule-name=XG -I %S/Inputs/declare-use %s -verify
Daniel Jasper962b38e2014-04-11 11:47:45 +00003
4#include "g.h"
5#include "e.h"
6#include "f.h" // expected-error {{module XG does not depend on a module exporting 'f.h'}}
7#include "i.h" // expected-error {{module XG does not depend on a module exporting 'i.h'}}
8
9const int g2 = g1 + e + f + aux_i;