summaryrefslogtreecommitdiffstats
path: root/tests/run-make/cross-lang-lto-upstream-rlibs/staticlib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/cross-lang-lto-upstream-rlibs/staticlib.rs')
-rw-r--r--tests/run-make/cross-lang-lto-upstream-rlibs/staticlib.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/run-make/cross-lang-lto-upstream-rlibs/staticlib.rs b/tests/run-make/cross-lang-lto-upstream-rlibs/staticlib.rs
new file mode 100644
index 000000000..34951dda3
--- /dev/null
+++ b/tests/run-make/cross-lang-lto-upstream-rlibs/staticlib.rs
@@ -0,0 +1,8 @@
+#![crate_type="staticlib"]
+
+extern crate upstream;
+
+#[no_mangle]
+pub extern "C" fn bar() {
+ upstream::foo();
+}