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);
}