DEBSOURCES
Skip Quicknav
sources / rust-cxx / 1.0.141-1 / tests / ui / ptr_missing_unsafe.rs
12345678910
#[cxx::bridge] mod ffi { unsafe extern "C++" { type C; fn not_unsafe_ptr(c: *mut C); } } fn main() {}