aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/ns1.C
blob: cb77780dc166e47be0b23b34bed7207cacefdb62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/14821

namespace A {
  namespace B {}
}

namespace A {
  namespace Alias = ::A::B;
}

namespace A {
  namespace Alias = ::A::B;
}