Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
using58.C
blob: d04bce1e91fb1ab778469f173a2aa2a73f127f0e [
file
] [
log
] [
blame
]
void
Foo
(
int
);
void
Foo
(
double
);
namespace
Y
{
void
Baz
(
int
);
// { dg-message "previous declaration" }
}
void
X
()
{
using
::
Foo
;
extern
void
Foo
(
int
);
using
Y
::
Baz
;
extern
void
Baz
(
int
);
// { dg-error "conflicts with" }
}