6_5_sizeof_bitfield.c (97B)
1 int test_main(void) { 2 struct S { 3 unsigned a : 3; 4 } s = {1}; 5 return (int)sizeof(s.a); 6 }