(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
c99struct1.C
// { dg-options "" }
// C99 anon struct variable with array accesses.

struct s { int a[1]; };

void
foo5 (void)
{
  int i = ((struct s) { { 0 } }).a[0];
}