David Majnemer | 02e7644 | 2015-01-09 09:38:14 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s |
Douglas Gregor | 05cfc29 | 2010-05-14 05:08:22 +0000 | [diff] [blame] | 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 | } |
Nico Weber | 729f1e2 | 2012-10-27 23:44:27 +0000 | [diff] [blame] | 9 | |
| 10 | // PR14085 |
| 11 | namespace PR14085 {} |
| 12 | namespace = PR14085; // expected-error {{expected identifier}} |
David Majnemer | 02e7644 | 2015-01-09 09:38:14 +0000 | [diff] [blame] | 13 | |
| 14 | struct namespace_nested_in_record { |
| 15 | int k = ({namespace {}}); // expected-error {{statement expression not allowed at file scope}} |
| 16 | }; |