tcc-65816/test/tests/960326-1.c
2017-06-09 13:52:12 +02:00

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);
}