blob: ad320ad1eeb5df6cfdc63aa21bef0a553ad0f627 [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
/// <div rustbindgen replaces="nsTArray"></div>
#[repr(C)]
#[derive(Debug, Default, Copy, Clone)]
pub struct nsTArray {
pub y: ::std::os::raw::c_uint,
}
#[repr(C)]
#[derive(Debug, Default, Copy, Clone)]
pub struct Test {
pub a: nsTArray,
}
#[test]
fn bindgen_test_layout_Test() {
assert_eq!(
::std::mem::size_of::<Test>(),
4usize,
concat!("Size of: ", stringify!(Test))
);
assert_eq!(
::std::mem::align_of::<Test>(),
4usize,
concat!("Alignment of ", stringify!(Test))
);
assert_eq!(
{
let struct_instance = unsafe { std::mem::zeroed::<Test>() };
let struct_ptr = &struct_instance as *const Test;
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!(Test), "::", stringify!(a))
);
}
#[test]
fn __bindgen_test_layout_nsTArray_open0_long_close0_instantiation() {
assert_eq!(
::std::mem::size_of::<nsTArray>(),
4usize,
concat!("Size of template specialization: ", stringify!(nsTArray))
);
assert_eq!(
::std::mem::align_of::<nsTArray>(),
4usize,
concat!(
"Alignment of template specialization: ",
stringify!(nsTArray)
)
);
}