Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
builtin1.C
blob: 3b826bd866a52382567ce7bab4e6fefcf68e04f2 [
file
] [
log
] [
blame
]
namespace
std
{
class
Base
{};
}
struct
Derived
:
public
std
::
Base
{
operator
const
char
*()
const
;
operator
bool
(
void
)
const
;
};
void
log
(
const
char
*
str
);
void
nothing
()
{
Derived
temp
;
log
(
temp
);
}