summaryrefslogtreecommitdiffstats
path: root/tests/run-make/manual-link/foo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/manual-link/foo.rs')
-rw-r--r--tests/run-make/manual-link/foo.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/run-make/manual-link/foo.rs b/tests/run-make/manual-link/foo.rs
new file mode 100644
index 000000000..c1f28236f
--- /dev/null
+++ b/tests/run-make/manual-link/foo.rs
@@ -0,0 +1,11 @@
+#![crate_type = "rlib"]
+
+extern "C" {
+ fn bar();
+}
+
+pub fn foo() {
+ unsafe {
+ bar();
+ }
+}