PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / init / new30.C
blob24582d8fb1cbda61848f96cb7e867410cab99f70
1 // PR c++/40975
3 struct data_type
5     // constructor required to reproduce compiler bug
6     data_type() {}
7 };
9 struct ptr_type
11     // array new as default argument required to reproduce compiler bug
12     ptr_type (data_type* ptr = new data_type[1]) { delete[] ptr; }
15 ptr_type obj;