Skip to content

Commit

Permalink
Allow noop_method_call in clippy ui test
Browse files Browse the repository at this point in the history
  • Loading branch information
rylev committed Mar 3, 2021
1 parent 7984e60 commit e3f4855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ui/unnecessary_clone.rs
@@ -1,7 +1,7 @@
// does not test any rustfixable lints

#![warn(clippy::clone_on_ref_ptr)]
#![allow(unused, clippy::redundant_clone, clippy::unnecessary_wraps)]
#![allow(unused, noop_method_call, clippy::redundant_clone, clippy::unnecessary_wraps)]

use std::cell::RefCell;
use std::rc::{self, Rc};
Expand Down

0 comments on commit e3f4855

Please sign in to comment.