about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOneirical <manchot@videotron.ca>2024-05-15 10:09:19 -0400
committerOneirical <manchot@videotron.ca>2024-05-15 10:09:19 -0400
commita7484d2e49e8bec4e6b4c2442f07fdc77bf70966 (patch)
treeff5e4a349f38c392bd661bf9cf476fcd19a9459c
parentcae17ff42b711d0de6f5c70b90bd44b76c3d10c4 (diff)
downloadrust-a7484d2e49e8bec4e6b4c2442f07fdc77bf70966.tar.gz
rust-a7484d2e49e8bec4e6b4c2442f07fdc77bf70966.zip
fix tidy
-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();
 }