summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/redundant_clone.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/redundant_clone.rs')
-rw-r--r--src/tools/clippy/tests/ui/redundant_clone.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/ui/redundant_clone.rs b/src/tools/clippy/tests/ui/redundant_clone.rs
index e5aeacbb5..501898bf1 100644
--- a/src/tools/clippy/tests/ui/redundant_clone.rs
+++ b/src/tools/clippy/tests/ui/redundant_clone.rs
@@ -2,7 +2,12 @@
// rustfix-only-machine-applicable
#![feature(lint_reasons)]
#![warn(clippy::redundant_clone)]
-#![allow(clippy::drop_non_drop, clippy::implicit_clone, clippy::uninlined_format_args)]
+#![allow(
+ clippy::drop_non_drop,
+ clippy::implicit_clone,
+ clippy::uninlined_format_args,
+ clippy::unnecessary_literal_unwrap
+)]
use std::ffi::OsString;
use std::path::Path;