blob: f5cd598abc6b0d11d6278abeb93cbdfc543112fa [file] [log] [blame]
#![crate_type = "rlib"]
extern {
fn bar();
}
pub fn foo() {
unsafe { bar(); }
}