blob: 14c6f62a4483e09c7da836f8ff3855ebe52621ad [file] [log] [blame]
#[cxx::bridge]
mod here {
extern "C++" {
type C;
}
impl UniquePtr<C> {}
}
#[cxx::bridge]
mod there {
extern "C++" {
type C = crate::here::C;
}
impl UniquePtr<C> {}
}
fn main() {}