blob: 160b6b247ff5a62ef46dd1dda2d465ee60c187ad [file] [log] [blame]
use thiserror::Error;
#[derive(Debug)]
struct NotError;
#[derive(Error, Debug)]
#[error("...")]
pub struct ErrorStruct(#[source] NotError);
fn main() {}