(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
torture/
pr90194.C
// { dg-do compile }
// { dg-additional-options "-g" }

struct cb {
    int yr;
};

void *
operator new (__SIZE_TYPE__, void *nq)
{
  return nq;
}

void
af (int xn)
{
  new (&xn) cb { };
}