(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
vla22.C
// PR c++/93789 - ICE with invalid array bounds.
// { dg-do compile }
// { dg-options "" }

void
f ()
{
  const int tbl[(long) "h"] = { 12 }; // { dg-error "size of array .tbl. is not an integral constant-expression" }
}