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