mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2025-03-07 07:47:37 +00:00
14 lines
170 B
Rust
14 lines
170 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
extern "C" {
|
|
type C;
|
|
fn f(&'static self);
|
|
}
|
|
|
|
extern "Rust" {
|
|
fn f(string: &'a String);
|
|
}
|
|
}
|
|
|
|
fn main() {}
|