xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/nsimport.cc (revision 82650ea59673ac1511a0f5b008a97de18ced4707)
1 namespace A {
2   int x = 11;
3   namespace{
4     int xx = 22;
5   }
6 }
7 
8 using namespace A;
9 
10 namespace{
11   int xxx = 33;
12 };
13 
main()14 int main()
15 {
16   (void) x;
17   (void) xx;
18   (void) xxx;
19   return 0;
20 }
21