1 #[cxx::bridge] 2 mod ffi { 3 unsafe extern "C++" { 4 type C; 5 not_unsafe_ptr(c: *mut C)6 fn not_unsafe_ptr(c: *mut C); 7 } 8 } 9 main()10 fn main() {} 11