Handle "p 'S::method()::static_var'" (quoted) in symbol lookup
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / nsimport.cc
CommitLineData
8540c487
SW
1namespace A {
2 int x = 11;
3 namespace{
4 int xx = 22;
5 }
6}
7
8using namespace A;
9
10namespace{
11 int xxx = 33;
12};
13
14int main()
15{
16 x;
17 xx;
18 xxx;
19 return 0;
20}
This page took 0.830572 seconds and 4 git commands to generate.