view gcc/testsuite/g++.dg/ext/c99struct1.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// { dg-options "" }
// C99 anon struct variable with array accesses.

struct s { int a[1]; };

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