PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / init / new34.C
blob9e67eb34174faf07ffbba806c0445abb218670ac
1 // PR c++/53356
3 struct A { A(); ~A(); };
5 struct B {
6     operator const A () const;
7 };
9 A* cause_ICE() {
10   return new A((A(),A()));