about summary refs log tree commit diff
path: root/tests/run-make/rlib-format-packed-bundled-libs-3/rust_dep.rs
blob: bde9b739de6a3d54b3c0ae0a24d175a75238df00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[link(name = "native_dep_1", kind = "static", modifiers = "+whole-archive,+bundle")]
extern "C" {}

#[link(name = "native_dep_2", kind = "static", modifiers = "+whole-archive,-bundle")]
extern "C" {}

#[link(name = "native_dep_3", kind = "static", modifiers = "+bundle")]
extern "C" {}

#[link(name = "native_dep_4", kind = "static", modifiers = "-bundle")]
extern "C" {}

#[no_mangle]
pub fn rust_dep() {}