Add test of non-rawable keyword in format string

This commit is contained in:
David Tolnay 2024-11-04 15:14:31 -05:00
parent 8d06fb5549
commit 6b48b090f8
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -318,6 +318,15 @@ fn test_keyword() {
assert("error: 1", Error);
}
#[test]
fn test_self() {
#[derive(Error, Debug)]
#[error("error: {self:?}")]
struct Error;
assert("error: Error", Error);
}
#[test]
fn test_str_special_chars() {
#[derive(Error, Debug)]