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