Skip to content

Commit

Permalink
Merge pull request #164 from dtolnay/frombacktrace
Browse files Browse the repository at this point in the history
Fix miscounting fields when from and backtrace are same field
  • Loading branch information
dtolnay committed Dec 18, 2021
2 parents 7966eb3 + c4d7c2b commit 320d70f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
6 changes: 5 additions & 1 deletion impl/src/valid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,11 @@ fn check_field_attrs(fields: &[Field]) -> Result<()> {
}
}
if let Some(from_field) = from_field {
if fields.len() > 1 + has_backtrace as usize {
let max_expected_fields = match backtrace_field {
Some(backtrace_field) => 1 + !same_member(from_field, backtrace_field) as usize,
None => 1 + has_backtrace as usize,
};
if fields.len() > max_expected_fields {
return Err(Error::new_spanned(
from_field.attrs.from,
"deriving From requires no fields other than source and backtrace",
Expand Down
12 changes: 12 additions & 0 deletions tests/ui/from-backtrace-backtrace.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// https://github.com/dtolnay/thiserror/issues/163

#![feature(backtrace)]

use std::backtrace::Backtrace;
use thiserror::Error;

#[derive(Error, Debug)]
#[error("...")]
pub struct Error(#[from] #[backtrace] std::io::Error, Backtrace);

fn main() {}
5 changes: 5 additions & 0 deletions tests/ui/from-backtrace-backtrace.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
error: deriving From requires no fields other than source and backtrace
--> tests/ui/from-backtrace-backtrace.rs:10:18
|
10 | pub struct Error(#[from] #[backtrace] std::io::Error, Backtrace);
| ^^^^^^^

0 comments on commit 320d70f

Please sign in to comment.