2014-04-11 12:20:33 -07:00
|
|
|
#![crate_type = "rlib"]
|
|
|
|
|
|
|
|
|
|
extern crate foo;
|
|
|
|
|
|
2016-12-05 16:31:05 -08:00
|
|
|
#[link(name = "bar", kind = "static")]
|
2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2014-04-11 12:20:33 -07:00
|
|
|
fn bar();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn doit() {
|
2020-09-01 17:12:52 -04:00
|
|
|
unsafe {
|
|
|
|
|
bar();
|
|
|
|
|
}
|
2014-04-11 12:20:33 -07:00
|
|
|
}
|