summaryrefslogtreecommitdiffstats
path: root/tests/rust/function_ptr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rust/function_ptr.rs')
-rw-r--r--tests/rust/function_ptr.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/rust/function_ptr.rs b/tests/rust/function_ptr.rs
new file mode 100644
index 0000000..59adb52
--- /dev/null
+++ b/tests/rust/function_ptr.rs
@@ -0,0 +1,6 @@
+pub type MyCallback = Option<unsafe extern "C" fn(a: usize, b: usize)>;
+
+pub type MyOtherCallback = Option<unsafe extern "C" fn(a: usize, lot: usize, of: usize, args: usize, and_then_some: usize)>;
+
+#[no_mangle]
+pub extern "C" fn my_function(a: MyCallback, b: MyOtherCallback) {}