Track caller of the assertion helper in test_expr

This commit is contained in:
David Tolnay 2024-11-02 09:41:40 -07:00
parent a1882b2a75
commit 751dc63a8e
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -50,6 +50,7 @@ pub enum RustupError {
},
}
#[track_caller]
fn assert<T: Display>(expected: &str, value: T) {
assert_eq!(expected, value.to_string());
}