[to-be-committed,RISC-V,V4] movmem for RISCV with V extension
[official-gcc.git] / gcc / testsuite / gcc.dg / vla-init-2.c
blobf23630a36572a6d2f5131c761219a05efc781e3a
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, first
4 testcase. */
5 /* { dg-do compile } */
6 /* { dg-options "" } */
8 const int i = 1;
9 void foo() { char a[][i] = {""}; } /* { dg-error "variable-sized object may not be initialized" } */