Sign in
third-party-mirror
/
cbindgen
/
9a26cd0114a633fa05ece30bd3f1b13149f496f2
/
.
/
cbindgen-0.24.5
/
tests
/
rust
/
pin.rs
blob: c8781ae60f78295ec671eea3ba7df43c5a40f007 [
file
] [
log
] [
blame
]
#[
repr
(
C
)]
struct
PinTest
{
pinned_box
:
Pin
<
Box
<
i32
>>,
pinned_ref
:
Pin
<&
mut
i32
>
}
#[
no_mangle
]
pub
extern
"C"
fn
root
(
s
:
Pin
<&
mut
i32
>,
p
:
PinTest
)
{}