xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/cxx-inline-namespace.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc // RUN: rm -rf %t
2f4a2713aSLionel Sambuc // RUN: %clang_cc1 -x objective-c++ -fmodules -fmodules-cache-path=%t -I %S/Inputs %s -verify -std=c++11
3f4a2713aSLionel Sambuc 
4f4a2713aSLionel Sambuc @import cxx_inline_namespace;
5*0a6a1f1dSLionel Sambuc @import cxx_inline_namespace_b;
6f4a2713aSLionel Sambuc 
7f4a2713aSLionel Sambuc T x; // expected-error {{unknown type name 'T'}}
8*0a6a1f1dSLionel Sambuc 
9*0a6a1f1dSLionel Sambuc X::Elaborated *p;
10