summaryrefslogtreecommitdiffstats
path: root/tests/run-make/pass-linker-flags/attribute.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/pass-linker-flags/attribute.rs')
-rw-r--r--tests/run-make/pass-linker-flags/attribute.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/run-make/pass-linker-flags/attribute.rs b/tests/run-make/pass-linker-flags/attribute.rs
new file mode 100644
index 000000000..6f784c01f
--- /dev/null
+++ b/tests/run-make/pass-linker-flags/attribute.rs
@@ -0,0 +1,11 @@
+#![feature(link_arg_attribute)]
+
+#[link(kind = "static", name = "l1")]
+#[link(kind = "link-arg", name = "a1")]
+#[link(kind = "static", name = "l2")]
+#[link(kind = "link-arg", name = "a2")]
+#[link(kind = "dylib", name = "d1")]
+#[link(kind = "link-arg", name = "a3")]
+extern "C" {}
+
+fn main() {}