6_7_2_1_01_bitfield.c (102B)
1 int test_main(void) { 2 struct { 3 unsigned a : 5, b : 3; 4 } s = {2, 5}; 5 return s.b * 8 + s.a; 6 }