2014-10-23 07:52:04 +08:00
|
|
|
// RUN: rm -rf %t
|
|
|
|
// RUN: %clang_cc1 -fmodule-maps -fmodules-cache-path=%t -fmodules-strict-decluse -fmodule-name=XG -I %S/Inputs/declare-use %s -verify
|
2014-10-23 10:02:31 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fmodules-strict-decluse -fmodule-name=XG -I %S/Inputs/declare-use %s -verify
|
2014-10-23 07:52:04 +08:00
|
|
|
|
|
|
|
#define GIMME_A_K
|
|
|
|
#include "k.h"
|
|
|
|
|
|
|
|
#define GIMME_AN_L
|
|
|
|
#include "l.h" // expected-error {{module XG does not depend on a module exporting 'l.h'}}
|
|
|
|
|
|
|
|
const int g = k + l;
|