(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
diagnostic/
integral-array-size-1.C
template<typename T>
void foo(T a)
{
  new int[a];  // { dg-error "11:size in array new must have integral type" }
}

template void foo(float);