blob: 0e8d7c41b52af42a69d65c771c5f420291ba3d1d [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
#[repr(C)]
#[derive(Debug, Default)]
pub struct NoCopy {
pub _address: u8,
}
#[test]
fn bindgen_test_layout_NoCopy() {
assert_eq!(
::std::mem::size_of::<NoCopy>(),
1usize,
concat!("Size of: ", stringify!(NoCopy))
);
assert_eq!(
::std::mem::align_of::<NoCopy>(),
1usize,
concat!("Alignment of ", stringify!(NoCopy))
);
}
#[repr(C)]
#[derive(Debug, Default)]
pub struct AllowlistMe {
pub a: NoCopy,
}
#[test]
fn bindgen_test_layout_AllowlistMe() {
assert_eq!(
::std::mem::size_of::<AllowlistMe>(),
1usize,
concat!("Size of: ", stringify!(AllowlistMe))
);
assert_eq!(
::std::mem::align_of::<AllowlistMe>(),
1usize,
concat!("Alignment of ", stringify!(AllowlistMe))
);
assert_eq!(
{
let struct_instance = unsafe { std::mem::zeroed::<AllowlistMe>() };
let struct_ptr = &struct_instance as *const AllowlistMe;
let field_ptr = std::ptr::addr_of!(struct_instance.a);
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!(AllowlistMe),
"::",
stringify!(a)
)
);
}