cbindgen/tests/rust/function_args.rs
Emilio Cobos Álvarez 5eae0bc07b function: Add support for wildcards in arguments.
We don't support unnamed arguments, and we give a terrible error
("Parameter has an unsupported type.") when you use them.

They're very simple to implement so we should just do it.
2020-07-25 13:50:11 +02:00

26 lines
467 B
Rust

#[no_mangle]
pub unsafe extern fn array_print(a: &[u64]) {
eprintln!("{:?}", a);
}
#[no_mangle]
pub unsafe extern fn array_test(a: [u64; 3]) {
array_print(&a);
}
#[no_mangle]
pub unsafe extern fn unnamed(_: *const u64) {
}
#[no_mangle]
pub unsafe extern fn pointer_test(a: *const u64) {
let a = std::slice::from_raw_parts(a, 3);
array_print(a);
}
#[no_mangle]
pub unsafe extern fn print_from_rust() {
let a = [0, 1, 2];
array_print(&a);
}