URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [pr45049-1.C] - Rev 706
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */
namespace n1 {
void modf ();
}
namespace n2 {
void trunc ();
void modf ();
}
void max ()
{
using n1::modf;
using n2::trunc;
using n2::modf;
}
Go to most recent revision | Compare with Previous | Blame | View Log