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;