unplugged-system/external/rust/cxx/tests/ui/async_fn.rs

15 lines
154 B
Rust

#[cxx::bridge]
mod ffi {
extern "Rust" {
async fn f();
}
extern "C++" {
async fn g();
}
}
async fn f() {}
fn main() {}