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