1// bindgen-flags: --rust-target 1.26
2
3union Bar {
4  unsigned char foo;
5} __attribute__ ((__aligned__ (16)));
6
7
8union Baz {
9  union Bar bar;
10};
11