modernc.org/cc@v1.0.1/testdata/issue89.c (about) 1 struct a 2 { 3 unsigned f : 3; 4 }; 5 6 void h() 7 { 8 struct a a; 9 g(a.f); 10 } 11 12 int g(unsigned);