1#[cxx::bridge]
2mod ffi {
3    unsafe extern "C++" {
4        fn f(callback: fn(p: *const u8));
5    }
6}
7
8fn main() {}
9