15 lines
188 B
Rust
15 lines
188 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
unsafe extern "C++" {
|
|
type One;
|
|
type Two;
|
|
fn f(&mut self);
|
|
}
|
|
|
|
extern "Rust" {
|
|
fn f(self: &Self);
|
|
}
|
|
}
|
|
|
|
fn main() {}
|