llvm-project/clang/test/Parser/cxx-using-directive.cpp
Daniel Dunbar 8fbe78f6fc Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
- This is designed to make it obvious that %clang_cc1 is a "test variable"
   which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it
   can be useful to redefine what gets run as 'clang -cc1' (for example, to set
   a default target).

llvm-svn: 91446
2009-12-15 20:14:24 +00:00

41 lines
892 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
class A {};
namespace B {
namespace A {}
using namespace A ;
}
namespace C {}
namespace D {
class C {
using namespace B ; // expected-error{{not allowed}}
};
namespace B {}
using namespace C ;
using namespace B::A ; // expected-error{{expected namespace name}}
//FIXME: would be nice to note, that A is not member of D::B
using namespace ::B::A ;
using namespace ::D::C ; // expected-error{{expected namespace name}}
}
using namespace ! ; // expected-error{{expected namespace name}}
using namespace A ; // expected-error{{expected namespace name}}
using namespace ::A // expected-error{{expected namespace name}} \
// expected-error{{expected ';' after namespace name}}
B ;
void test_nslookup() {
int B;
class C;
using namespace B;
using namespace C;
}