1 #[cxx::bridge] 2 mod ffi { 3 extern "Rust" { f(x: i32)4 fn f(x: i32); 5 } 6 } 7 f(_x: i32)8 unsafe fn f(_x: i32) {} 9 main()10 fn main() {} 11