(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
vla1.C
// PR c++/29226
// { dg-options "" }

template <bool>
static int label (int w)
{
  sizeof(int[w]);
  return 0;
}
int a = label<false>(1);