From 57c188e3907fd2fb0ce4152ef89a81e1f1215513 Mon Sep 17 00:00:00 2001 From: Noa Date: Tue, 6 Jun 2023 11:59:00 -0500 Subject: [PATCH] Fix clippy::let_with_type_underscore in generated code --- tracing-attributes/src/expand.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tracing-attributes/src/expand.rs b/tracing-attributes/src/expand.rs index d71366c663..50d6648d6b 100644 --- a/tracing-attributes/src/expand.rs +++ b/tracing-attributes/src/expand.rs @@ -64,7 +64,10 @@ pub(crate) fn gen_function<'a, B: ToTokens + 'a>( // unreachable, but does affect inference, so it needs to be written // exactly that way for it to do its magic. let fake_return_edge = quote_spanned! {return_span=> - #[allow(unreachable_code, clippy::diverging_sub_expression, clippy::let_unit_value, clippy::unreachable)] + #[allow( + unreachable_code, clippy::diverging_sub_expression, clippy::let_unit_value, + clippy::unreachable, clippy::let_with_type_underscore + )] if false { let __tracing_attr_fake_return: #return_type = unreachable!("this is just for type inference, and is unreachable code");