1 use thiserror::Error;
2 
3 #[derive(Error, Debug)]
4 pub enum ErrorEnum {
5     Confusing {
6         #[source]
7         a: std::io::Error,
8         #[source]
9         b: anyhow::Error,
10     },
11 }
12 
main()13 fn main() {}
14