mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 13:57:38 +03:00
Detect extraneous fields before generating From
This commit is contained in:
parent
2492735b67
commit
0e8d1baa69
1 changed files with 8 additions and 0 deletions
|
@ -135,6 +135,14 @@ fn check_field_attrs(fields: &[Field]) -> Result<()> {
|
|||
));
|
||||
}
|
||||
}
|
||||
if let Some(from_field) = from_field {
|
||||
if fields.len() > 1 {
|
||||
return Err(Error::new_spanned(
|
||||
from_field.attrs.from,
|
||||
"deriving From requires no fields other than source",
|
||||
));
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue