From 6b48b090f8fac94927d0a6d08c0fb0efef979e66 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 4 Nov 2024 15:14:31 -0500 Subject: [PATCH] Add test of non-rawable keyword in format string --- tests/test_display.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/test_display.rs b/tests/test_display.rs index 89bdc4a..7fad386 100644 --- a/tests/test_display.rs +++ b/tests/test_display.rs @@ -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)]