6_7_2_1_bitfield_too_wide.c (95B)
1 struct B { 2 unsigned a : 33; 3 }; 4 5 int test_main(void) { 6 struct B b; 7 b.a = 0; 8 return 0; 9 }