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][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
namespace-aliases.cpp
blob
8624eb75bf29a7f8455b944d5a94cb32715b068e
1
// RUN: %clang_cc1 -emit-llvm-only %s
2
namespace
A
{ }
3
namespace
B
=
A
;
4
5
namespace
b
{}
6
7
void
foo
() {
8
namespace
a
=
b
;
9
}