Skip to content

Commit

Permalink
attributes: fix clippy::let_with_type_underscore in generated code (#…
Browse files Browse the repository at this point in the history
…2609)

Co-authored-by: Hayden Stainsby <hds@caffeineconcepts.com>
Co-authored-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
3 people committed Jun 15, 2023
1 parent e6f4ff1 commit 3bde225
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tracing-attributes/src/expand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 3bde225

Please sign in to comment.