Add justification to non-static lifetime diagnostic

This commit is contained in:
David Tolnay 2020-12-26 17:27:02 -08:00
parent 464a409608
commit d31d96bba2
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 2 deletions

View file

@ -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",
));
}
}

View file

@ -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>);