2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vla-init-3.c
blob55e1de69ca746962f00e5f53349338c329eae8b3
1 /* Arrays of unknown size with element type a VLA type should not be
2 initialized (C99 isn't clear about whether such arrays are VLAs,
3 but this is the only reasonable interpretation). Bug 16409, second
4 testcase. */
5 /* { dg-do compile } */
6 /* { dg-options "" } */
8 void foo(int i) { char a[][i] = {""}; } /* { dg-error "variable-sized object may not be initialized" } */
9 /* { dg-error "array size missing in 'a'" "extra error" { target *-*-* } .-1 } */