blob: 5f53a0a5fe8273f9c14c93154e77278f14789926 [file] [log] [blame]
#[cxx::bridge]
mod ffi {
unsafe extern "C++" {
type One;
type Two;
fn f(&mut self);
}
extern "Rust" {
fn f(self: &Self);
}
}
fn main() {}