blob: 1267091ab25354193ba3c73aeea66bce6d945bc5 [file] [log] [blame]
Dimitry Andricb1aa87e2016-01-03 15:55:40 +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
7namespace [[]] A::B {} // expected-error {{attributes cannot be specified on a nested namespace definition}}
8
9enum test {
10 bing [[]],
11 bar [[]] = 1,
12 baz [[]][[]],
13 quux [[]][[]] = 4
14};