diff --git a/impl/src/expand.rs b/impl/src/expand.rs index d0b302b..20ba1d2 100644 --- a/impl/src/expand.rs +++ b/impl/src/expand.rs @@ -170,10 +170,9 @@ fn impl_struct(input: Struct) -> TokenStream { let source_var = Ident::new("source", span); let body = from_initializer(from_field, backtrace_field, &source_var); quote_spanned! {span=> - #[allow(unused_qualifications, clippy::needless_lifetimes)] + #[allow(deprecated, unused_qualifications, clippy::needless_lifetimes)] #[automatically_derived] impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause { - #[allow(deprecated)] fn from(#source_var: #from) -> Self { #ty #body } @@ -435,10 +434,9 @@ fn impl_enum(input: Enum) -> TokenStream { let source_var = Ident::new("source", span); let body = from_initializer(from_field, backtrace_field, &source_var); Some(quote_spanned! {span=> - #[allow(unused_qualifications, clippy::needless_lifetimes)] + #[allow(deprecated, unused_qualifications, clippy::needless_lifetimes)] #[automatically_derived] impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause { - #[allow(deprecated)] fn from(#source_var: #from) -> Self { #ty::#variant #body } diff --git a/tests/test_lints.rs b/tests/test_lints.rs index b46a391..d272454 100644 --- a/tests/test_lints.rs +++ b/tests/test_lints.rs @@ -64,6 +64,16 @@ fn test_deprecated() { Variant, } + #[derive(Error, Debug)] + pub enum DeprecatedFrom { + #[error(transparent)] + Variant( + #[from] + #[allow(deprecated)] + DeprecatedStruct, + ), + } + #[allow(deprecated)] let _: DeprecatedStruct; #[allow(deprecated)]