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