summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/static-nobundle/bbb.rs
blob: 0e10fc3dd3a0c1f2f022b4910ccbafe7db694223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![crate_type = "rlib"]
#![feature(static_nobundle)]

#[link(name = "aaa", kind = "static-nobundle")]
extern {
    pub fn native_func();
}

pub fn wrapped_func() {
    unsafe {
        native_func();
    }
}