blob: 15e579f8fa75af13da14d5642c88e7d163c73e90 [file] [log] [blame]
use thiserror::Error;
#[derive(Error, Debug)]
pub enum ErrorEnum {
Confusing {
#[source]
a: std::io::Error,
#[source]
b: anyhow::Error,
},
}
fn main() {}