blob: 43dda32bcfc0c78e64d9bfea34b4bbe386a62d39 [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct A {
pub len: usize,
pub offset: isize,
pub next: *mut A,
}
#[test]
fn bindgen_test_layout_A() {
assert_eq!(
::std::mem::size_of::<A>(),
24usize,
concat!("Size of: ", stringify!(A))
);
assert_eq!(
::std::mem::align_of::<A>(),
8usize,
concat!("Alignment of ", stringify!(A))
);
assert_eq!(
unsafe { &(*(::std::ptr::null::<A>())).len as *const _ as usize },
0usize,
concat!("Offset of field: ", stringify!(A), "::", stringify!(len))
);
assert_eq!(
unsafe { &(*(::std::ptr::null::<A>())).offset as *const _ as usize },
8usize,
concat!("Offset of field: ", stringify!(A), "::", stringify!(offset))
);
assert_eq!(
unsafe { &(*(::std::ptr::null::<A>())).next as *const _ as usize },
16usize,
concat!("Offset of field: ", stringify!(A), "::", stringify!(next))
);
}
impl Default for A {
fn default() -> Self {
unsafe { ::std::mem::zeroed() }
}
}