chromium/third_party/rust/chromium_crates_io/vendor/cxx-1.0.126/tests/ui/async_fn.rs

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

    extern "C++" {
        async fn g();
    }
}

async fn f() {}

fn main() {}