xref: /minix3/external/bsd/llvm/dist/clang/test/Parser/namespace-alias-attr.cpp (revision 83ee113ee0d94f3844d44065af2311604e9a30ad)
1 // RUN: %clang_cc1 -verify %s
2 
3 namespace A
4 {
5 }
6 
7 namespace B __attribute__ (( static )) = A; // expected-error{{attributes cannot be specified on namespace alias}}
8 
9