mirror of
https://github.com/topjohnwu/cxx.git
synced 2025-02-24 18:12:14 +00:00
11 lines
106 B
Rust
11 lines
106 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
extern "Rust" {
|
|
async fn f();
|
|
}
|
|
}
|
|
|
|
async fn f() {}
|
|
|
|
fn main() {}
|