summaryrefslogtreecommitdiff
path: root/src/tools/clippy/tests/ui/format_args.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-09-25 11:40:41 +0000
committerbors <bors@rust-lang.org>2024-09-25 11:40:41 +0000
commit38352b01ae4af9300be03b805d6db68c45e51068 (patch)
tree7cf47dc3c19a390f3cf8368937706e8a831ae6af /src/tools/clippy/tests/ui/format_args.rs
parent2933f68abefa9e56ac336cb686a435a54e8a1f21 (diff)
parente60098bf8c09732eef92e9d2f2876508d9f39913 (diff)
Auto merge of #130778 - flip1995:clippy-subtree-update, r=Manishearth
Clippy subtree update r? `@Manishearth` Really delayed sync (2 1/2 weeks), because of a `debug_assertion` we hit, and I didn't have the time to investigate earlier. It would be nice to merge this PR with some priority, as it includes a lot of formatting changes due to the rustfmt bump. Include Cargo.lock update due to Clippy version bump and ui_test bump in Clippy.
Diffstat (limited to 'src/tools/clippy/tests/ui/format_args.rs')
-rw-r--r--src/tools/clippy/tests/ui/format_args.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/ui/format_args.rs b/src/tools/clippy/tests/ui/format_args.rs
index d242623feb6..18ab223db78 100644
--- a/src/tools/clippy/tests/ui/format_args.rs
+++ b/src/tools/clippy/tests/ui/format_args.rs
@@ -8,7 +8,7 @@
clippy::uninlined_format_args
)]
-use std::io::{stdout, Write};
+use std::io::{Write, stdout};
use std::ops::Deref;
use std::panic::Location;