| Douglas Gregor | 95f1b15 | 2010-05-14 05:08:22 +0000 | [diff] [blame] | 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 | } | ||||