about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2014-07-07 09:54:38 -0700
committerSteven Fackler <sfackler@gmail.com>2014-07-07 10:13:22 -0700
commit12b3498cedb3a3f2568a9e8796a52d3a6f234f26 (patch)
tree9f6b053762ba7efb1fef234193a83fe85039228f /src/test
parent4f120e6bafe971452adfede158a7957b00562a4e (diff)
downloadrust-12b3498cedb3a3f2568a9e8796a52d3a6f234f26.tar.gz
rust-12b3498cedb3a3f2568a9e8796a52d3a6f234f26.zip
Strip empty strings from link args
Closes #15487
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/issue-15487.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-15487.rs b/src/test/run-pass/issue-15487.rs
new file mode 100644
index 00000000000..ee7595819bf
--- /dev/null
+++ b/src/test/run-pass/issue-15487.rs
@@ -0,0 +1,20 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// ignore-win32
+
+#![feature(link_args)]
+
+#[link_args="-lc  -lm"]
+#[link_args=" -lc"]
+#[link_args="-lc "]
+extern {}
+
+fn main() {}