1// bindgen-flags: -- --target=i586-unknown-linux 2 3typedef unsigned long long uint64_t; 4 5struct Test { 6 uint64_t foo; 7 uint64_t x : 56; 8 uint64_t y : 8; 9}; 10