diff --git a/tests/test_generics.rs b/tests/test_generics.rs index 36f1181..bcbfee0 100644 --- a/tests/test_generics.rs +++ b/tests/test_generics.rs @@ -1,6 +1,7 @@ #![allow(clippy::needless_late_init, clippy::uninlined_format_args)] use core::fmt::{self, Debug, Display}; +use core::str::FromStr; use thiserror::Error; pub struct NoFormat; @@ -160,6 +161,24 @@ pub struct StructFromGeneric { #[error(transparent)] pub struct StructTransparentGeneric(pub E); +// Should expand to: +// +// impl Display for AssociatedTypeError +// where +// T::Err: Display; +// +// impl Error for AssociatedTypeError +// where +// Self: Debug + Display; +// +#[derive(Error, Debug)] +pub enum AssociatedTypeError { + #[error("couldn't parse matrix")] + Other, + #[error("couldn't parse entry: {0}")] + EntryParseError(T::Err), +} + // Regression test for https://github.com/dtolnay/thiserror/issues/345 #[test] fn test_no_bound_on_named_fmt() {