Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.ns
/
overload2.C
blob: 85df6bd694b4a898e92be8e119a60a997e7ee0e7 [
file
] [
log
] [
blame
]
// { dg-do assemble }
namespace
A
{
void
f
();
// { dg-message "note" }
}
using
namespace
A
;
void
f
();
// { dg-message "note" }
void
g
()
{
f
();
// { dg-error "ambiguous" } ambiguous, ::f or A::f ?
}