blob: 526d03632c93eeea319fc9dd1e889098c31e6e30 [file] [log] [blame]
#[cxx::bridge]
mod ffi {
extern "C" {
type ThingC;
fn repro_c(t: &&ThingC);
}
extern "Rust" {
type ThingR;
fn repro_r(t: &&ThingR);
}
}
fn main() {}