mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47:39 +03:00
Add justification to non-static lifetime diagnostic
This commit is contained in:
parent
464a409608
commit
d31d96bba2
2 changed files with 2 additions and 2 deletions
|
@ -191,7 +191,7 @@ fn check_field_attrs(fields: &[Field]) -> Result<()> {
|
|||
if contains_non_static_lifetime(source_field) {
|
||||
return Err(Error::new_spanned(
|
||||
&source_field.original.ty,
|
||||
"non-static lifetimes are not allowed in the source of an error",
|
||||
"non-static lifetimes are not allowed in the source of an error, because std::error::Error requires the source is dyn Error + 'static",
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue