diff options
author | John McCall <rjmccall@apple.com> | 2009-11-10 07:56:40 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-11-10 07:56:40 +0000 |
commit | cdc89c485cde6aaa8c8e83f920cb25ddf7876a75 (patch) | |
tree | a1a66c77edae08a63063978d664c8693b68b4ac3 | |
parent | 37e9c47b6a6650b81c9796d2e46eb3ad6a0e16a0 (diff) |
Simple test case for [basic.lookup.udir].
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86674 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CXX/basic/basic.lookup/basic.lookup.udir/p1.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/CXX/basic/basic.lookup/basic.lookup.udir/p1.cpp b/test/CXX/basic/basic.lookup/basic.lookup.udir/p1.cpp new file mode 100644 index 0000000000..04aef1e39e --- /dev/null +++ b/test/CXX/basic/basic.lookup/basic.lookup.udir/p1.cpp @@ -0,0 +1,35 @@ +// RUN: clang-cc -fsyntax-only -verify %s + +// When looking up a namespace-name in a using-directive or +// namespace-alias-definition, only namespace names are considered. + +struct ns1 {}; +void ns2(); +int ns3 = 0; + +namespace ns0 { + namespace ns1 { + struct test0 {}; + } + namespace ns2 { + struct test1 {}; + } + namespace ns3 { + struct test2 {}; + } +} + +using namespace ns0; + +namespace test3 = ns1; +namespace test4 = ns2; +namespace test5 = ns3; + +using namespace ns1; +using namespace ns2; +using namespace ns3; + +test0 a; +test1 b; +test2 c; + |