• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #[cxx::bridge]
2 mod ffi {
3     unsafe extern "C++" {
4         type ThingC;
repro_c(t: &&ThingC)5         fn repro_c(t: &&ThingC);
6     }
7     extern "Rust" {
8         type ThingR;
repro_r(t: &&ThingR)9         fn repro_r(t: &&ThingR);
10     }
11 }
12 
main()13 fn main() {}
14