summaryrefslogtreecommitdiffstats
path: root/tests/run-make/rlib-format-packed-bundled-libs-3/rust_dep.rs
blob: abd846b6862d125b93d3e6f114800d9d0579fee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(packed_bundled_libs)]

#[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() {}