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