Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
using56.C
blob: 0174ed33eac38636eb1b7332b7cd0eb34fa003b3 [
file
] [
log
] [
blame
]
// The anticipated decl for 'log' got retained, leading to confusion */
extern
double
log
(
double
)
throw
();
namespace
std
{
using
::
log
;
float
log
(
float
)
throw
();
long
double
log
(
long
double
)
throw
();
}
void
Foo
(
double
x
)
{
std
::
log
(
x
);
}