blob: 957d7e880ad68e3998dd0f9e5b5e35996ab8923e [file] [log] [blame]
#![allow(dead_code, non_snake_case, non_camel_case_types, non_upper_case_globals)]
#[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
pub mod root {
#[allow(unused_imports)]
use self::super::root;
pub mod foo {
#[allow(unused_imports)]
use self::super::super::root;
pub mod bar {
#[allow(unused_imports)]
use self::super::super::super::root;
pub type Ty = ::std::os::raw::c_int;
}
pub type Ty = ::std::os::raw::c_longlong;
}
#[repr(C)]
#[derive(Debug, Default, Copy, Clone)]
pub struct Bar {
pub baz: root::foo::bar::Ty,
}
#[test]
fn bindgen_test_layout_Bar() {
const UNINIT: ::std::mem::MaybeUninit<Bar> = ::std::mem::MaybeUninit::uninit();
let ptr = UNINIT.as_ptr();
assert_eq!(
::std::mem::size_of::<Bar>(),
4usize,
concat!("Size of: ", stringify!(Bar)),
);
assert_eq!(
::std::mem::align_of::<Bar>(),
4usize,
concat!("Alignment of ", stringify!(Bar)),
);
assert_eq!(
unsafe { ::std::ptr::addr_of!((*ptr).baz) as usize - ptr as usize },
0usize,
concat!("Offset of field: ", stringify!(Bar), "::", stringify!(baz)),
);
}
}