]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/while_let_on_iterator.rs
Rollup merge of #102625 - Rageking8:fix-backtrace-small-typo, r=m-ou-se
[rust.git] / src / tools / clippy / tests / ui / while_let_on_iterator.rs
index 8b9a2dbcce3a7c62149ad36a72137281ce61ca53..3de586c9d8fd4b10a75fdbee0e9f24c24169f339 100644 (file)
@@ -1,14 +1,12 @@
 // run-rustfix
-
 #![warn(clippy::while_let_on_iterator)]
+#![allow(dead_code, unreachable_code, unused_mut)]
 #![allow(
-    clippy::never_loop,
-    unreachable_code,
-    unused_mut,
-    dead_code,
     clippy::equatable_if_let,
     clippy::manual_find,
-    clippy::redundant_closure_call
+    clippy::never_loop,
+    clippy::redundant_closure_call,
+    clippy::uninlined_format_args
 )]
 
 fn base() {