921e5a0eb4
From-SVN: r14840
17 lines
150 B
C
17 lines
150 B
C
struct s
|
|
{
|
|
int a;
|
|
int b;
|
|
short c;
|
|
int d[3];
|
|
};
|
|
|
|
struct s s = { .b = 3, .d = {2,0,0} };
|
|
|
|
main ()
|
|
{
|
|
if (s.b != 3)
|
|
abort ();
|
|
exit (0);
|
|
}
|