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

9 lines
91 B
Rust
Raw Normal View History

#[cxx::bridge]
mod ffi {
unsafe extern "C++" {
fn f() {}
}
}
fn main() {}