(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
conversion/
op6.C
// Origin: PR c++/42766
// { dg-do compile }

template<class T> class smart_pointer {
public:
    operator T* () const { return 0; }
    operator bool () const { return true; }
    operator bool () { return true; }
};
class Context { };
typedef smart_pointer<Context> ContextP;
class SvnClient  {
    ~SvnClient();
    ContextP svnContext;
};
SvnClient::~SvnClient() {
    delete svnContext;
}