summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.cp/nsimport.cc
blob: 92a10907f9e66cd7b9c578141fd36c7895d98aef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace A {
  int x = 11;
  namespace{
    int xx = 22;
  }
}

using namespace A;

namespace{
  int xxx = 33;
};

int main()
{
  (void) x;
  (void) xx;
  (void) xxx;
  return 0;
}