blob: b8c7819a019f3399a0475e77a185d4c6c11936e6 [file] [log] [blame]
Douglas Gregor95f1b152010-05-14 05:08:22 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3// PR6596
4namespace g { enum { o = 0 }; }
5
6void foo() {
7 namespace a { typedef g::o o; } // expected-error{{namespaces can only be defined in global or namespace scope}}
8}