blob: 047b22ef9d6684cd2d3223c8c283730b187725aa [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
pub enum Bar {}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Foo {
pub baz: *mut Bar,
}
#[test]
fn bindgen_test_layout_Foo() {
assert_eq!(
::std::mem::size_of::<Foo>(),
8usize,
concat!("Size of: ", stringify!(Foo))
);
assert_eq!(
::std::mem::align_of::<Foo>(),
8usize,
concat!("Alignment of ", stringify!(Foo))
);
assert_eq!(
unsafe { &(*(::std::ptr::null::<Foo>())).baz as *const _ as usize },
0usize,
concat!("Offset of field: ", stringify!(Foo), "::", stringify!(baz))
);
}
impl Default for Foo {
fn default() -> Self {
unsafe { ::std::mem::zeroed() }
}
}