mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 04:47:38 +03:00
Add test of r#source that is not Error::source
Without r#source: error[E0599]: the method `as_dyn_error` exists for type `char`, but its trait bounds were not satisfied --> tests/test_source.rs:72:9 | 72 | source: char, | ^^^^^^ method cannot be called on `char` due to unsatisfied trait bounds | = note: the following trait bounds were not satisfied: `char: std::error::Error` which is required by `char: AsDynError<'_>`
This commit is contained in:
parent
8d06fb5549
commit
b2df5d55ec
1 changed files with 17 additions and 0 deletions
|
@ -63,3 +63,20 @@ error_from_macro! {
|
|||
#[error("Something")]
|
||||
Variant(#[from] io::Error)
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_not_source() {
|
||||
#[derive(Error, Debug)]
|
||||
#[error("{source} ==> {destination}")]
|
||||
pub struct NotSource {
|
||||
r#source: char,
|
||||
destination: char,
|
||||
}
|
||||
|
||||
let error = NotSource {
|
||||
source: 'S',
|
||||
destination: 'D',
|
||||
};
|
||||
assert_eq!(error.to_string(), "S ==> D");
|
||||
assert!(error.source().is_none());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue