chromium/third_party/rust/chromium_crates_io/vendor/cxx-1.0.126/tests/ui/ptr_no_const_mut.rs

#[cxx::bridge]
mod ffi {
    unsafe extern "C++" {
        type C;

        fn get_neither_const_nor_mut() -> *C;
    }
}

fn main() {}