blob: 26b703d0e7cb3c355d1724c2a011f3eb3960552c [file] [log] [blame]
// { 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" }
}