]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Parser/namespace-alias-attr.cpp
Update Clang sources to r73879.
[FreeBSD/FreeBSD.git] / test / Parser / namespace-alias-attr.cpp
1 // RUN: clang-cc -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