repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git]
/
test
/
C++Frontend
/
2003-08-27-TypeNamespaces.cpp
blob
cd7247e6085b32f4bf92d06622870d2430c24506
1
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3
4
namespace
foo
{
5
namespace
bar
{
6
struct
X
{
X
(); };
7
8
X
::
X
() {}
9
}
10
}
11
12
13
namespace
{
14
struct
Y
{
Y
(); };
15
Y
::
Y
() {}
16
}