blob: b17dc10dc0b4300e293d75bf93939af056c603f6 [file] [log] [blame]
// { 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:
operator bool() const;
};
class Y : public X {
private:
operator void*() const;
};
int f(Y const& y) {
return bool(y);
}