1  typedef struct
       2  {
       3    short f:3, g:3, h:10;
       4  } small;
       5  
       6  struct
       7  {
       8    int i;
       9    small s[10];
      10  } x;
      11  
      12  main ()
      13  {
      14    int i;
      15    for (i = 0; i < 10; i++)
      16      x.s[i].f = 0;
      17    exit (0);
      18  }