blob: 0e10fc3dd3a0c1f2f022b4910ccbafe7db694223 [file] [log] [blame]
#![crate_type = "rlib"]
#![feature(static_nobundle)]
#[link(name = "aaa", kind = "static-nobundle")]
extern {
pub fn native_func();
}
pub fn wrapped_func() {
unsafe {
native_func();
}
}