blob: b34c34cb9696d77ce868294621d6bf78f00bbdc5 [file]
extern crate stuff;
extern "C" {
fn not_so_rusty() -> i64;
}
fn main() {
println!("printing: {} {}", stuff::explore(), unsafe {
not_so_rusty()
});
}