]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/while_let_on_iterator.fixed
Rollup merge of #102581 - jyn514:src-detection, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / tests / ui / while_let_on_iterator.fixed
index c57c46736342b6814b1bb919126521ae516ca28f..5afa0a89f82c87ae4a7a08585e2de03ef9650bca 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() {