mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47:39 +03:00
Add test of non-rawable keyword in format string
This commit is contained in:
parent
8d06fb5549
commit
6b48b090f8
1 changed files with 9 additions and 0 deletions
|
@ -318,6 +318,15 @@ fn test_keyword() {
|
||||||
assert("error: 1", Error);
|
assert("error: 1", Error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_self() {
|
||||||
|
#[derive(Error, Debug)]
|
||||||
|
#[error("error: {self:?}")]
|
||||||
|
struct Error;
|
||||||
|
|
||||||
|
assert("error: Error", Error);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_str_special_chars() {
|
fn test_str_special_chars() {
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue