From d1423b0416bc99339f08b07906cc18fc8def9a54 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 1 Aug 2022 21:26:51 +0900 Subject: [PATCH] Ignore clippy::assertions_on_result_states lint --- tests/pin_project.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pin_project.rs b/tests/pin_project.rs index aa08056e..a02e8ef5 100644 --- a/tests/pin_project.rs +++ b/tests/pin_project.rs @@ -1,5 +1,6 @@ #![warn(rust_2018_idioms, single_use_lifetimes)] #![allow(dead_code)] +#![allow(clippy::assertions_on_result_states)] #[macro_use] mod auxiliary;