blob: 8a5efc4023a3cc8fd719ec6b27a7df986076200f [file] [log] [blame]
// 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;
}