summaryrefslogtreecommitdiffstats
path: root/tests/rust/cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rust/cell.rs')
-rw-r--r--tests/rust/cell.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/rust/cell.rs b/tests/rust/cell.rs
new file mode 100644
index 0000000..5f16dbb
--- /dev/null
+++ b/tests/rust/cell.rs
@@ -0,0 +1,11 @@
+#[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) {}