From 922699ea5fc9c425339c8767154a5c8143892eb8 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 29 Dec 2022 00:53:58 -0800 Subject: [PATCH] Temporarily suppress where_clauses_object_safety due to regression https://github.com/rust-lang/rust/issues/106247 --- tests/test.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test.rs b/tests/test.rs index 23d8f80..9dcc673 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -10,6 +10,9 @@ clippy::trivially_copy_pass_by_ref, clippy::unused_async )] +// Temporarily suppressed due to rustc regression. +// https://github.com/rust-lang/rust/issues/106247 +#![allow(where_clauses_object_safety)] use async_trait::async_trait;