blob: 75fe265f5d728261a4fe5ad49b0cc44b6a57db43 [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
#[repr(C)]
#[derive(Copy, Clone)]
pub struct Base {
pub large: [::std::os::raw::c_int; 33usize],
}
#[test]
fn bindgen_test_layout_Base() {
assert_eq!(
::std::mem::size_of::<Base>(),
132usize,
concat!("Size of: ", stringify!(Base))
);
assert_eq!(
::std::mem::align_of::<Base>(),
4usize,
concat!("Alignment of ", stringify!(Base))
);
assert_eq!(
{
let struct_instance = unsafe { std::mem::zeroed::<Base>() };
let struct_ptr = &struct_instance as *const Base;
let field_ptr = std::ptr::addr_of!(struct_instance.large);
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!(Base),
"::",
stringify!(large)
)
);
}
impl Default for Base {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
impl ::std::cmp::PartialEq for Base {
fn eq(&self, other: &Base) -> bool {
&self.large[..] == &other.large[..]
}
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct ShouldDerivePartialEq {
pub _base: Base,
}
#[test]
fn bindgen_test_layout_ShouldDerivePartialEq() {
assert_eq!(
::std::mem::size_of::<ShouldDerivePartialEq>(),
132usize,
concat!("Size of: ", stringify!(ShouldDerivePartialEq))
);
assert_eq!(
::std::mem::align_of::<ShouldDerivePartialEq>(),
4usize,
concat!("Alignment of ", stringify!(ShouldDerivePartialEq))
);
}
impl Default for ShouldDerivePartialEq {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
impl ::std::cmp::PartialEq for ShouldDerivePartialEq {
fn eq(&self, other: &ShouldDerivePartialEq) -> bool {
self._base == other._base
}
}