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

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

        fn f(_: &mut [Opaque]);
    }
}

fn main() {}