blob: dd1a6f2a4cd62d3ac2c3eb565da86fe5e120e025 [file] [log] [blame]
// { dg-do assemble }
struct A
{
operator bool () const;
operator const void * () const;
};
struct B
{
A a;
int foo1 ();
int foo2 ();
};
int
B::foo1 ()
{
return a ? 0 : 1; // ambiguous default type conversion for `operator !='
}
int
B::foo2 ()
{
if (a)
return 0;
else
return 1;
}