(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
init/
new34.C
// PR c++/53356

struct A { A(); ~A(); };

struct B {
    operator const A () const;
};

A* cause_ICE() {
  return new A((A(),A()));
}