blob: 1e0143a707d8707f4f9963c21ae972af5ed10c2d [file] [log] [blame]
// Build don't link:
namespace A{
void f();
}
using A::f;
namespace A{
void f(int);
}
using A::f;
void g()
{
f(4);
}