Reject transparent attr in field attribute position

This commit is contained in:
David Tolnay 2020-04-27 15:48:44 -07:00
parent c1ab55293d
commit 85b0944eac
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
3 changed files with 18 additions and 0 deletions

View file

@ -163,6 +163,12 @@ fn check_field_attrs(fields: &[Field]) -> Result<()> {
backtrace_field = Some(field);
has_backtrace = true;
}
if let Some(transparent) = field.attrs.transparent {
return Err(Error::new_spanned(
transparent,
"#[error(transparent)] needs to go outside the enum or struct, not on an individual field",
));
}
has_backtrace |= field.is_backtrace();
}
if let (Some(from_field), Some(source_field)) = (from_field, source_field) {

View file

@ -0,0 +1,7 @@
use thiserror::Error;
#[derive(Error, Debug)]
#[error(transparent)]
pub struct Error(#[error(transparent)] std::io::Error);
fn main() {}

View file

@ -0,0 +1,5 @@
error: #[error(transparent)] needs to go outside the enum or struct, not on an individual field
--> $DIR/bad-field-attr.rs:5:18
|
5 | pub struct Error(#[error(transparent)] std::io::Error);
| ^^^^^^^^^^^^^^^^^^^^^