Files
cbindgen/tests/rust/box.skip_cpp.rs
T
2020-09-29 13:36:46 +02:00

17 lines
260 B
Rust

#[repr(C)]
pub struct MyStruct {
number: Box<i32>,
}
pub struct NotReprC<T> {
inner: T,
}
pub type Foo = NotReprC<Box<i32>>;
#[no_mangle]
pub extern "C" fn root(a: &Foo, with_box: &MyStruct) {}
#[no_mangle]
pub extern "C" fn delete(x: Box<i32>) {}