6_5_addr_of_bitfield.c (110B)
1 int test_main(void) { 2 struct S { 3 unsigned a : 3; 4 } s = {1}; 5 unsigned* p = &s.a; 6 return (int)*p; 7 }