Add a test for function pointer text wrapping.

This commit is contained in:
Emilio Cobos Álvarez
2022-11-10 14:21:06 +01:00
parent d8660bb01f
commit 66bc17facf
5 changed files with 78 additions and 0 deletions
+6
View File
@@ -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) {}