aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/torture/pr33340.C
blob: bac882156b552b0d25a35268c4a52a8fca7acfa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
void* operator new(__SIZE_TYPE__, void* __p) { }

struct auto_ptr {
        int* p;
        ~auto_ptr() { delete p; }
};

typedef void* T;
struct vector {
        void push_back(const T& __x) {
                ::new(0) T(__x);
                insert(__x);
        }
        void insert(const T& __x);
} v;

void g();
void f() {
        auto_ptr ap;
        if (ap.p) {
                ap.p = new int();
        }
        g();
        int* tmp = ap.p;
        ap.p = 0;
        v.push_back(tmp);
}