blob: ba606a25fef816833e1093d50e1f88749dfb5a42 [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
pub struct BlocklistMe(u8);
/// Because this type contains a blocklisted type, it should not derive Hash.
#[repr(C)]
pub struct ShouldNotDeriveHash {
pub a: BlocklistMe,
}
#[test]
fn bindgen_test_layout_ShouldNotDeriveHash() {
assert_eq!(
::std::mem::size_of::<ShouldNotDeriveHash>(),
1usize,
concat!("Size of: ", stringify!(ShouldNotDeriveHash))
);
assert_eq!(
::std::mem::align_of::<ShouldNotDeriveHash>(),
1usize,
concat!("Alignment of ", stringify!(ShouldNotDeriveHash))
);
assert_eq!(
unsafe {
&(*(::std::ptr::null::<ShouldNotDeriveHash>())).a as *const _
as usize
},
0usize,
concat!(
"Offset of field: ",
stringify!(ShouldNotDeriveHash),
"::",
stringify!(a)
)
);
}
impl Default for ShouldNotDeriveHash {
fn default() -> Self {
unsafe { ::std::mem::zeroed() }
}
}