mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17: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",
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
error: non-static lifetimes are not allowed in the source of an error
|
||||
error: non-static lifetimes are not allowed in the source of an error, because std::error::Error requires the source is dyn Error + 'static
|
||||
--> $DIR/lifetime.rs:5:26
|
||||
|
|
||||
5 | struct Error<'a>(#[from] Inner<'a>);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue