summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/union-align.h
blob: 9557b2798a92e7ff1af47d9bc9b6f047ec1a9f0f (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: --rust-target 1.26

union Bar {
  unsigned char foo;
} __attribute__ ((__aligned__ (16)));


union Baz {
  union Bar bar;
};