third_party_rust_cxx/tests/ui/expected_named.rs

10 lines
146 B
Rust

#[cxx::bridge]
mod ffi {
unsafe extern "C++" {
type Borrowed<'a>;
fn borrowed() -> UniquePtr<Borrowed>;
}
}
fn main() {}