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
[AMDGPU] Add True16 register classes.
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
namespace-alias
/
main.cpp
blob
b35efda11c8cf9542a7d4f484a78efaf68d0b50b
1
namespace
A
{
2
inline
namespace
_A
{
3
namespace
B
{
4
namespace
C
{
5
int
a
= -
1
;
6
7
int
func
() {
return
0
; }
8
}
// namespace C
9
}
// namespace B
10
11
namespace
C
=
B
::
C
;
12
namespace
D
=
B
::
C
;
13
14
}
// namespace _A
15
}
// namespace A
16
17
namespace
E
=
A
;
18
namespace
F
=
E
::
C
;
19
namespace
G
=
F
;
20
21
int
main
(
int
argc
,
char
**
argv
) {
return
A
::
B
::
C
::
a
; }