1 2 3 4 5 6 7 8 9 10 11 12
extern crate a; #[link(name = "b", kind = "static")] extern "C" { pub fn b(); } fn main() { unsafe { b(); } }