Split duplicate-source ui test

This commit is contained in:
David Tolnay 2019-12-18 11:00:35 -08:00
parent 7f943c1fcd
commit d844466046
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
5 changed files with 21 additions and 19 deletions

View file

@ -0,0 +1,13 @@
use thiserror::Error;
#[derive(Error, Debug)]
pub enum ErrorEnum {
Confusing {
#[source]
a: std::io::Error,
#[source]
b: anyhow::Error,
},
}
fn main() {}