xref
: /
netbsd-src
/
external
/
gpl3
/
gdb.old
/
dist
/
gdb
/
testsuite
/
gdb.cp
/
namespace-enum.cc
(revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
enum
A
{
A_A
};
2
enum
A
a
=
A_A
;
3
4
namespace
foo
5
{
6
enum
B
{
B_B
};
7
enum
B
b
=
B_B
;
8
};
9