summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/bitfield-large.hpp
blob: 2e34927929445d34589f2ab25cf278eb96ad7c5d (plain)
1
2
3
4
5
6
7
8
9
struct HasBigBitfield {
  __int128 x : 128;
};


struct HasTwoBigBitfields {
  __int128 x : 80;
  __int128 y : 48;
};