Rebase.
[official-gcc.git] / gcc / testsuite / gcc.dg / vla-init-1.c
blob5e20530ab98c65aeada2e63aae815ac83b97ad25
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 "variable-sized object may not be initialized" "VLA init" } */
13 /* { dg-warning "excess elements in array initializer" "excess" { target *-*-* } 12 } */
14 /* { dg-message "near initialization" "near" { target *-*-* } 12 } */