third_party_rust_cxx/tests/ui/ptr_in_fnptr.rs

9 lines
115 B
Rust

#[cxx::bridge]
mod ffi {
unsafe extern "C++" {
fn f(callback: fn(p: *const u8));
}
}
fn main() {}