summaryrefslogtreecommitdiff
path: root/tests/headers/bitfield-linux-32.hpp
blob: b9a480df1551583b75945e141ae8a9a0b5a4e85f (plain)
1
2
3
4
5
6
7
8
9
// bindgen-flags: -- --target=i586-unknown-linux

typedef unsigned long long uint64_t;

struct Test {
  uint64_t foo;
  uint64_t x : 56;
  uint64_t y : 8;
};