repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Parser
/
namespace-alias-attr.cpp
blob
0baba8493d0fda59188defd75c7c41521d4df0a6
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