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