diff --git a/tests/bound.rs b/tests/bound.rs index 8139822..fccbab6 100644 --- a/tests/bound.rs +++ b/tests/bound.rs @@ -1,3 +1,4 @@ +#![allow(unused)] mod util; use std::marker::PhantomData; diff --git a/tests/hygiene.rs b/tests/hygiene.rs index 2789fcc..bde728f 100644 --- a/tests/hygiene.rs +++ b/tests/hygiene.rs @@ -1,4 +1,4 @@ -#![allow(clippy::clone_on_copy)] +#![allow(clippy::clone_on_copy, unused)] mod util; diff --git a/tests/incomparable.rs b/tests/incomparable.rs index 6a7624f..ae0ff84 100644 --- a/tests/incomparable.rs +++ b/tests/incomparable.rs @@ -1,3 +1,4 @@ +#![allow(unused)] use derive_where::derive_where; macro_rules! incomparable { diff --git a/tests/misc.rs b/tests/misc.rs index 64e361d..8119902 100644 --- a/tests/misc.rs +++ b/tests/misc.rs @@ -1,3 +1,4 @@ +#![allow(unused)] use std::marker::PhantomData; use derive_where::derive_where;