repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ignore invalid DOF provider sections
[binutils-gdb.git]
/
gdb
/
testsuite
/
gdb.cp
/
nsnoimports.cc
blob
d1c68abaeacc7150a7497173cf4b486341b4b656
1
2
namespace
A
3
{
4
int
_a
=
11
;
5
6
namespace
B
{
7
8
int
ab
=
22
;
9
10
namespace
C
{
11
12
int
abc
=
33
;
13
14
int
second
(){
15
return
0
;
16
}
17
18
}
19
20
int
first
(){
21
_a
;
22
ab
;
23
C
::
abc
;
24
return
C
::
second
();
25
}
26
}
27
}
28
29
30
int
31
main
()
32
{
33
A
::
_a
;
34
A
::
B
::
ab
;
35
A
::
B
::
C
::
abc
;
36
return
A
::
B
::
first
();
37
}