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