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