blob: 945f94885117ccbce03a3845b26d794e1f2c847b [file] [log] [blame]
// Build don't link:
// Declarations after the first one don't affect the set of used decls.
namespace A{
void f(); // ERROR - .*
}
using A::f;
namespace A{
void f(int);
}
using A::f;
void g()
{
f(4); // ERROR - too many arguments
}