(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
new6.C
// PR c++/52725

struct A { };

const int n = 42;

void f()
{
  A** p = new (A*[n]);
}