blob: 5bb7e2a47aff2547b8e06abfd2a0aa4d25448a34 (
plain)
1
2
3
4
5
6
7
|
// RUN: rm -rf %t
// RUN: %clang_cc1 -x objective-c++ -fmodules-cache-path=%t -fmodules -fmodules-decluse -fmodule-name=G -I %S/Inputs/declare-use %s -verify
#include "g.h"
#include "e.h"
#include "f.h" // expected-error {{use of a module not declared used}}
const int g2 = g1+e+f;
|