Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / torture / pr90194.C
blobf0c3a77db8af062f3ae0e15a80497a115c25f585
1 // { dg-do compile }
2 // { dg-additional-options "-g" }
4 struct cb {
5     int yr;
6 };
8 void *
9 operator new (__SIZE_TYPE__, void *nq)
11   return nq;
14 void
15 af (int xn)
17   new (&xn) cb { };