diff --git a/tests/test_generics.rs b/tests/test_generics.rs index d7790e2..4d49edf 100644 --- a/tests/test_generics.rs +++ b/tests/test_generics.rs @@ -159,3 +159,16 @@ pub struct StructFromGeneric { #[derive(Error, Debug)] #[error(transparent)] pub struct StructTransparentGeneric(pub E); + +// Regression test for https://github.com/dtolnay/thiserror/issues/345 +#[test] +fn test_no_bound_on_named_fmt() { + #[derive(Error, Debug)] + #[error("{thing}", thing = "...")] + struct Error { + thing: T, + } + + let error = Error { thing: DebugOnly }; + assert_eq!(error.to_string(), "..."); +}