1 #[cxx::bridge]
2 mod ffi {
3     unsafe extern "C++" {
f()4         fn f() {}
5     }
6 }
7 
main()8 fn main() {}
9