blob: 5f53a0a5fe8273f9c14c93154e77278f14789926 [file] [log] [blame]
David Tolnayab739572020-04-22 18:21:43 -07001#[cxx::bridge]
2mod ffi {
David Tolnay7be5b1f2020-11-11 10:48:32 -08003 unsafe extern "C++" {
David Tolnayab739572020-04-22 18:21:43 -07004 type One;
5 type Two;
6 fn f(&mut self);
7 }
8
9 extern "Rust" {
10 fn f(self: &Self);
11 }
12}
13
14fn main() {}