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