• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --impl-partialeq
2 
3 union U4 {
4     unsigned derp : 1;
5 };
6 
7 union B {
8     unsigned foo : 31;
9     unsigned char bar : 1;
10 };
11