DEBSOURCES
Skip Quicknav
sources / rust-cxx / 1.0.141-1 / tests / ui / lifetime_extern_cxx.rs
123456789
#[cxx::bridge] mod ffi { extern "C++" { type Opaque; unsafe fn f<'a>(&'a self, arg: &str) -> &'a str; } } fn main() {}