2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960326-1.c
blobf201373702257e14bbc9a57af3e9e37ca341fef8
1 struct s
3 int a;
4 int b;
5 short c;
6 int d[3];
7 };
9 struct s s = { .b = 3, .d = {2,0,0} };
11 main ()
13 if (s.b != 3)
14 abort ();
15 exit (0);