mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Work around trivial bounds being unstable
This commit is contained in:
parent
1567f40ec3
commit
1754825c24
2 changed files with 3 additions and 18 deletions
|
@ -38,7 +38,9 @@ fn fallback(input: &DeriveInput, error: syn::Error) -> TokenStream {
|
|||
#[allow(unused_qualifications)]
|
||||
impl #impl_generics std::error::Error for #ty #ty_generics #where_clause
|
||||
where
|
||||
#ty #ty_generics: ::core::fmt::Debug,
|
||||
// Work around trivial bounds being unstable.
|
||||
// https://github.com/rust-lang/rust/issues/48214
|
||||
for<'workaround> #ty #ty_generics: ::core::fmt::Debug,
|
||||
{}
|
||||
|
||||
#[allow(unused_qualifications)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue