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