blob: bd5be2dbbf54605afa05b3cdee9d5fe3b7d4c55e [file] [log] [blame]
// { dg-options "" }
// C99 anon struct variable with array accesses.
struct s { int a[1]; };
void
foo5 (void)
{
int i = ((struct s) { { 0 } }).a[0];
}