blob: 0ed0ee865631d164f1b5521b3f8f278d68a69e38 [file] [log] [blame]
// Testcase for proper hiding of base conversion ops.
struct A
{
operator const char *();
};
struct B : public A
{
operator const char *() { return 0; }
};
int main( void )
{
B b;
const char *p = b;
}