Allow noop_method_call in clippy ui test

This commit is contained in:
Ryan Levick 2021-01-18 14:15:19 +01:00 committed by Ryan Levick
parent 7984e60d9e
commit e3f48559ed
1 changed files with 1 additions and 1 deletions

View File

@ -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};