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