about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tests/run-make/c-link-to-rust-staticlib/rmake.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/run-make/c-link-to-rust-staticlib/rmake.rs b/tests/run-make/c-link-to-rust-staticlib/rmake.rs
index 762d7953a9a..63d5eb78c69 100644
--- a/tests/run-make/c-link-to-rust-staticlib/rmake.rs
+++ b/tests/run-make/c-link-to-rust-staticlib/rmake.rs
@@ -8,11 +8,7 @@ use std::fs;
 
 fn main() {
     rustc().input("foo.rs").run();
-    cc().input("bar.c")
-        .input(static_lib("foo"))
-        .out_exe("bar")
-        .args(&extra_c_flags())
-        .run();
+    cc().input("bar.c").input(static_lib("foo")).out_exe("bar").args(&extra_c_flags()).run();
     run("bar");
     fs::remove_file(static_lib("foo"));
     run("bar");