diff options
Diffstat (limited to 'tests/run-make/rlib-format-packed-bundled-libs/rust_dep_local.rs')
-rw-r--r-- | tests/run-make/rlib-format-packed-bundled-libs/rust_dep_local.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/run-make/rlib-format-packed-bundled-libs/rust_dep_local.rs b/tests/run-make/rlib-format-packed-bundled-libs/rust_dep_local.rs new file mode 100644 index 000000000..8280c7d6c --- /dev/null +++ b/tests/run-make/rlib-format-packed-bundled-libs/rust_dep_local.rs @@ -0,0 +1,13 @@ +#[link(name = "native_dep_1", kind = "static")] +extern "C" { + fn native_f1() -> i32; +} + +extern crate rust_dep_up; + +pub fn rust_dep_local() { + unsafe { + assert!(native_f1() == 1); + } + rust_dep_up::rust_dep_up(); +} |