xref: /minix3/external/bsd/llvm/dist/clang/test/Parser/namespaces.cpp (revision e985b929927b5932e3b68f4b50587d458900107a)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 // PR6596
4 namespace g { enum { o = 0 }; }
5 
6 void foo() {
7   namespace a { typedef g::o o; } // expected-error{{namespaces can only be defined in global or namespace scope}}
8 }
9 
10 // PR14085
11 namespace PR14085 {}
12 namespace = PR14085; // expected-error {{expected identifier}}
13