unplugged-vendor/external/rust/cxx/tests/ui/fallible_fnptr.rs

9 lines
117 B
Rust
Raw Normal View History

#[cxx::bridge]
mod ffi {
unsafe extern "C++" {
fn f(callback: fn() -> Result<()>);
}
}
fn main() {}