(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lookup/
using13.C
// { dg-do compile }

// Origin: Stefan Straßer <sstrasser@systemhaus-gruppe.de>

// PR c++/20240: 

namespace A { int a; }

namespace C{
  int a;
  using A::a;		// { dg-error "conflicts with a previous" }
}