mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-21 18:02:50 +02:00
8 lines
161 B
Rust
8 lines
161 B
Rust
#[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) {}
|