blob: 78fd1973225208104fef19d2251f16a5215983d3 [file] [log] [blame] [edit]
#[repr(transparent)]
pub struct Foo(NonZeroU64);
#[repr(C)]
pub struct Bar {
foo: Option<Foo>,
}
#[no_mangle]
pub extern "C" fn root(f: Bar) {}