8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/931110-1.c

19 lines
168 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
typedef struct
{
short f:3, g:3, h:10;
} small;
struct
{
int i;
small s[10];
} x;
main ()
{
int i;
for (i = 0; i < 10; i++)
x.s[i].f = 0;
exit (0);
}