From 891b0630a5d3090e0a3c6aaa7474252344dfc294 Mon Sep 17 00:00:00 2001 From: Roland Fredenhagen Date: Sat, 3 Aug 2024 23:50:44 +0200 Subject: [PATCH] fixup! Fix clippy --- tests/bound.rs | 1 + tests/hygiene.rs | 2 +- tests/incomparable.rs | 1 + tests/misc.rs | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/bound.rs b/tests/bound.rs index 81398224..fccbab61 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 2789fcc2..bde728ff 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 6a7624fd..ae0ff844 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 64e361d4..81199020 100644 --- a/tests/misc.rs +++ b/tests/misc.rs @@ -1,3 +1,4 @@ +#![allow(unused)] use std::marker::PhantomData; use derive_where::derive_where;