unplugged-system/external/rust/cxx/tests/ui/slice_unsupported.rs

11 lines
127 B
Rust
Raw Normal View History

#[cxx::bridge]
mod ffi {
unsafe extern "C++" {
type Opaque;
fn f(_: &mut [Opaque]);
}
}
fn main() {}