modernc.org/cc@v1.0.1/testdata/issue90.c (about)

     1  struct {
     2  	unsigned a:1;
     3  	unsigned b:1;
     4  } x;
     5  
     6  void f() {
     7  	x.a + x.b;
     8  }