Detect extraneous fields before generating From

This commit is contained in:
David Tolnay 2019-10-12 17:26:48 -07:00
parent 2492735b67
commit 0e8d1baa69
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -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(())
}