blob: 38344e48a9d25ad093f09ff54f842e769ea683a7 [file] [log] [blame]
// { dg-do compile }
namespace a
{
void f(int);
}
namespace b
{
void f(int); // { dg-message "previous" }
void g()
{
f (3);
}
using a::f; // { dg-error "conflicts" }
}