// { dg-do assemble }// conversion ops should be treated as coming from the most derived class// for overload resolution. See [over.match.funcs].class X {public:operatorbool()const;};class Y :public X {private:operatorvoid*()const;};intf(Y const& y) {returnbool(y);}