6_7_2_1_07_signed_bitfield.c (100B)
1 int test_main(void) { 2 struct { 3 signed int s : 8; 4 } b = {-1}; 5 return (b.s < 0) ? 42 : 0; 6 }