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