blob: 7b1dcd568ebe054bdc849636a961ba20067d624f [file] [log] [blame]
/* { dg-do compile } */
namespace n1 {
void modf ();
}
namespace n2 {
void trunc ();
void modf ();
}
void max ()
{
using n1::modf;
using n2::trunc;
using n2::modf;
}