blob: f57b47dd58627ddbe73d6a96e7703679abeb96f3 [file] [log] [blame]
Aaron Ballman730476b2014-11-08 15:33:35 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++1z %s
2
3namespace [[]] foo {}
4namespace [[]] {}
5namespace [[]] bad = foo; // expected-error {{attributes cannot be specified on namespace alias}}
6
Aaron Ballman0de6a9b2014-11-08 17:09:50 +00007namespace [[]] A::B {} // expected-error {{attributes cannot be specified on a nested namespace definition}}
8
Aaron Ballman730476b2014-11-08 15:33:35 +00009enum test {
10 bing [[]],
11 bar [[]] = 1,
12 baz [[]][[]],
13 quux [[]][[]] = 4
14};