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