mirror of
https://github.com/topjohnwu/cxx.git
synced 2025-02-24 10:03:39 +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() {}
|