1struct { long f8:8; long f24:24; } a;
2struct { long f32:32; } b;
3
4main ()
5{
6  if (sizeof (a) != sizeof (b))
7    abort ();
8  exit (0);
9}
10