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