mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
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() {}
|