Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
using13.C
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" }
}