zannabianca1997

Results 1 issues of zannabianca1997

`thiserror` works well with recursive error types, and this snippet compiles with no error: ```rust use std::error::Error; use thiserror::Error; // 1.0.63 #[derive(Debug, Error)] pub enum MyError { #[error("Recurse")] Recurse(#[source] Box),...