aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/new30.C
blob: 24582d8fb1cbda61848f96cb7e867410cab99f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/40975

struct data_type
{
    // constructor required to reproduce compiler bug
    data_type() {}
};

struct ptr_type
{
    // array new as default argument required to reproduce compiler bug
    ptr_type (data_type* ptr = new data_type[1]) { delete[] ptr; }
};

ptr_type obj;