Additional test file missed from r288737.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 6 Dec 2016 00:14:22 +0000 (00:14 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 6 Dec 2016 00:14:22 +0000 (00:14 +0000)
llvm-svn: 288738

clang/test/Modules/redundant-include.mm [new file with mode: 0644]

diff --git a/clang/test/Modules/redundant-include.mm b/clang/test/Modules/redundant-include.mm
new file mode 100644 (file)
index 0000000..d736022
--- /dev/null
@@ -0,0 +1,12 @@
+// RUN: rm -rf %t
+// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I%S/Inputs %s -verify
+// RUN: %clang_cc1 -fmodules-cache-path=%t -fimplicit-module-maps -I%S/Inputs %s -verify
+
+#include "cxx-header.h"
+void includeNotAtTopLevel() { // expected-note {{function 'includeNotAtTopLevel' begins here}}
+  #include "cxx-header.h" // expected-error {{redundant #include of module 'cxx_library' appears within function 'includeNotAtTopLevel'}}
+}
+
+namespace NS { // expected-note {{begins here}}
+  #include "cxx-header.h" // expected-error {{redundant #include of module 'cxx_library' appears within namespace 'NS'}}
+}