* hppa.h (pa_opcodes): Use "cX" completer instead of "cx" in fstqx
[external/binutils.git] / gdb / testsuite / gdb.cp / nsimport.cc
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
14 int main()
15 {
16   x;
17   xx;
18   xxx;
19   return 0;
20 }