(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wvla-1.C
/* { dg-do compile } */
/* { dg-options "-Wvla" } */
/* { dg-require-effective-target alloca } */

void func (int i)
{
  int array[i]; /* { dg-warning "7:variable length array 'array' is used" } */
}