about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-07 17:16:34 +0000
committerbors <bors@rust-lang.org>2014-07-07 17:16:34 +0000
commit49bc17bfdd7143909aede81652d7d624cecd8a70 (patch)
tree9f6b053762ba7efb1fef234193a83fe85039228f /src/test
parent4f120e6bafe971452adfede158a7957b00562a4e (diff)
parent12b3498cedb3a3f2568a9e8796a52d3a6f234f26 (diff)
downloadrust-49bc17bfdd7143909aede81652d7d624cecd8a70.tar.gz
rust-49bc17bfdd7143909aede81652d7d624cecd8a70.zip
auto merge of #15502 : sfackler/rust/link_args_spaces, r=alexcrichton
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() {}