DEBSOURCES
Skip Quicknav
sources / rust-cxx / 1.0.141-1 / tests / ui / missing_unsafe.rs
12345678910
#[cxx::bridge] mod ffi { extern "Rust" { fn f(x: i32); } } unsafe fn f(_x: i32) {} fn main() {}