Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
6b6bba4a2087638f0cdec23f0d0f2088be68019c
/
.
/
clang
/
test
/
Parser
/
namespace-alias-attr.cpp
blob: 9e4072cde22527adc56e6dc147eeba3bdc8fd38c [
file
] [
log
] [
blame
]
Douglas Gregor
6b6bba4
2009-06-17 19:49:00 +0000
[
diff
] [
blame^
]
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