(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
init/
new20.C
// PR c++/31743
typedef int A[];
A* p = new A;   // { dg-error "invalid use of array with unspecified bounds" }
A* q = new (A); // { dg-error "invalid use of array with unspecified bounds" }