mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47:39 +03:00
Reject transparent attr in field attribute position
This commit is contained in:
parent
c1ab55293d
commit
85b0944eac
3 changed files with 18 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue