8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c

16 lines
129 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
struct s {
int a[3];
int c[3];
};
struct s s = {
c: {1, 2, 3}
};
main()
{
if (s.c[0] != 1)
abort ();
exit (0);
}