Skip to content

Commit

Permalink
tracing-attributes: allow warning clippy unreachable (tokio-rs#2270)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhicodes-crypto committed Oct 25, 2022
1 parent 196e83e commit 02e07cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-attributes/src/expand.rs
Expand Up @@ -64,7 +64,7 @@ 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)]
#[allow(unreachable_code, clippy::diverging_sub_expression, clippy::let_unit_value, clippy::unreachable)]
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 02e07cc

Please sign in to comment.