summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/using20.C
blob: dc1d293a2ee4add147796689cb2673b5e3a70451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/40476

namespace A
{
  int i;			// { dg-error "i" }
}
using namespace A;
namespace B
{
  namespace B2
  {
    int i;			// { dg-error "i" }
  }
  using namespace B2;
}
using namespace B;

int j = ::i;			// { dg-error "ambiguous" }