aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/conversion/op6.C
blob: 9aec9f0a8086bb49faf507c97d5956ff88ff2d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Origin: PR c++/42766
// { dg-do compile }

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