mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Add test that {:p} prints the right address
thread 'test_pointer' panicked at tests/test_display.rs:265:5: assertion `left == right` failed left: "0x7fbbd7df10" right: "0x7fac000e30"
This commit is contained in:
parent
5dfd2cc112
commit
46586dde23
1 changed files with 14 additions and 0 deletions
|
@ -251,6 +251,20 @@ fn test_nested_tuple_field() {
|
|||
assert("0", Error(Inner(0)));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_pointer() {
|
||||
#[derive(Error, Debug)]
|
||||
#[error("{field:p}")]
|
||||
pub struct Struct {
|
||||
field: Box<i32>,
|
||||
}
|
||||
|
||||
let s = Struct {
|
||||
field: Box::new(-1),
|
||||
};
|
||||
assert_eq!(s.to_string(), format!("{:p}", s.field));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_macro_rules() {
|
||||
// Regression test for https://github.com/dtolnay/thiserror/issues/86
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue