blob: bf3fc8ced2996f8fd8858cbfcc289bbdc34c3fdc [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
#![cfg(feature = "nightly")]
#[repr(C)]
#[repr(align(8))]
#[derive(Debug, Default, Copy, Clone)]
pub struct a {
pub b: ::std::os::raw::c_int,
pub c: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_a() {
assert_eq!(
::std::mem::size_of::<a>(),
8usize,
concat!("Size of: ", stringify!(a))
);
assert_eq!(
::std::mem::align_of::<a>(),
8usize,
concat!("Alignment of ", stringify!(a))
);
assert_eq!(
{
let struct_instance = unsafe { std::mem::zeroed::<a>() };
let struct_ptr = &struct_instance as *const a;
let field_ptr = std::ptr::addr_of!(struct_instance.b);
let struct_address = struct_ptr as usize;
let field_address = field_ptr as usize;
std::mem::forget(struct_instance);
field_address.checked_sub(struct_address).unwrap()
},
0usize,
concat!("Offset of field: ", stringify!(a), "::", stringify!(b))
);
assert_eq!(
{
let struct_instance = unsafe { std::mem::zeroed::<a>() };
let struct_ptr = &struct_instance as *const a;
let field_ptr = std::ptr::addr_of!(struct_instance.c);
let struct_address = struct_ptr as usize;
let field_address = field_ptr as usize;
std::mem::forget(struct_instance);
field_address.checked_sub(struct_address).unwrap()
},
4usize,
concat!("Offset of field: ", stringify!(a), "::", stringify!(c))
);
}
#[repr(C)]
#[repr(align(8))]
#[derive(Debug, Default, Copy, Clone)]
pub struct b {
pub b: ::std::os::raw::c_int,
pub c: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_b() {
assert_eq!(
::std::mem::size_of::<b>(),
8usize,
concat!("Size of: ", stringify!(b))
);
assert_eq!(
::std::mem::align_of::<b>(),
8usize,
concat!("Alignment of ", stringify!(b))
);
assert_eq!(
{
let struct_instance = unsafe { std::mem::zeroed::<b>() };
let struct_ptr = &struct_instance as *const b;
let field_ptr = std::ptr::addr_of!(struct_instance.b);
let struct_address = struct_ptr as usize;
let field_address = field_ptr as usize;
std::mem::forget(struct_instance);
field_address.checked_sub(struct_address).unwrap()
},
0usize,
concat!("Offset of field: ", stringify!(b), "::", stringify!(b))
);
assert_eq!(
{
let struct_instance = unsafe { std::mem::zeroed::<b>() };
let struct_ptr = &struct_instance as *const b;
let field_ptr = std::ptr::addr_of!(struct_instance.c);
let struct_address = struct_ptr as usize;
let field_address = field_ptr as usize;
std::mem::forget(struct_instance);
field_address.checked_sub(struct_address).unwrap()
},
4usize,
concat!("Offset of field: ", stringify!(b), "::", stringify!(c))
);
}