about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tests/run-make/panic-impl-transitive/rmake.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/run-make/panic-impl-transitive/rmake.rs b/tests/run-make/panic-impl-transitive/rmake.rs
index 4e25f2410e8..86308f593b3 100644
--- a/tests/run-make/panic-impl-transitive/rmake.rs
+++ b/tests/run-make/panic-impl-transitive/rmake.rs
@@ -10,5 +10,10 @@ use run_make_support::{rustc, tmp_dir};
 
 fn main() {
     rustc().input("panic-impl-provider.rs").run();
-    rustc().input("panic-impl-consumer.rs").panic("abort").emit("llvm-ir").library_search_path(tmp_dir()).run();
+    rustc()
+        .input("panic-impl-consumer.rs")
+        .panic("abort")
+        .emit("llvm-ir")
+        .library_search_path(tmp_dir())
+        .run();
 }