cbindgen/tests/rust/cell.rs
2020-03-09 01:49:14 +01:00

12 lines
228 B
Rust

#[repr(C)]
pub struct MyStruct {
number: std::cell::Cell<i32>,
}
pub struct NotReprC<T> { inner: T }
pub type Foo = NotReprC<std::cell::RefCell<i32>>;
#[no_mangle]
pub extern "C" fn root(a: &Foo, with_cell: &MyStruct) {}