view gcc/testsuite/g++.dg/torture/pr35164-2.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

struct __shared_count {
    __shared_count() { _M_pi = new int; }
    int * _M_pi;
};
template<typename _Tp>
class __shared_ptr {
public:
    __shared_ptr(_Tp* __p);
    void reset(int * __p) {
        __shared_ptr(__p).swap(*this);
    }
    void swap(__shared_ptr<_Tp>& __other) {
        __other._M_refcount._M_pi = _M_refcount._M_pi;
    }
    __shared_count _M_refcount;
};
template<typename _Tp> class shared_ptr : public __shared_ptr<_Tp> {};
int main() {
    for (shared_ptr<int> *iter;;)
    {
        try {
            (iter++)->reset(new int);
        }
        catch (...) {
        }
    }
}