brintos

brintos / llvm-project-archived public Read only

0
0
Text · 385 B · 1267091 Raw
15 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify -std=c++1z %s2 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 [[]][[]] = 414};15