Fix borrow and deref

This commit is contained in:
Ryan Levick 2021-02-16 22:39:05 +01:00
parent e3f48559ed
commit 09c4503cae

View File

@ -1,7 +1,7 @@
// does not test any rustfixable lints
#![warn(clippy::clone_on_ref_ptr)]
#![allow(unused, noop_method_call, clippy::redundant_clone, clippy::unnecessary_wraps)]
#![allow(unused, clippy::redundant_clone, clippy::unnecessary_wraps)]
use std::cell::RefCell;
use std::rc::{self, Rc};