summaryrefslogtreecommitdiff
path: root/tests/projects/rust/cxx_call_rust_library/src/bridge.rsx
blob: 3710f4bfded0660b4d8fd3f4c4d356bcb0d4f2f1 (plain)
1
2
3
4
5
6
#[cxx::bridge]
mod foo {
    extern "Rust" {
        fn add(a: i32, b: i32) -> i32;
    }
}