2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / vla-init-1.c
blob61d235752fa5096c8404084a089186c6fb8fec05
1 /* Test for tree-checking error when initializing a variable-length array
2 (not allowed): constructor_max_index needs to be an INTEGER_CST. */
3 /* Origin: Joseph Myers <jsm28@cam.ac.uk>. */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 int a;
9 void
10 foo (void)
12 int x[a] = { 1 }; /* { dg-error "init" "VLA init" } */