Files
fparkan/vendor/thiserror/tests/ui/duplicate-struct-source.rs
T

12 lines
161 B
Rust
Raw Normal View History

2024-01-08 01:21:28 +04:00
use thiserror::Error;
#[derive(Error, Debug)]
pub struct ErrorStruct {
#[source]
a: std::io::Error,
#[source]
b: anyhow::Error,
}
fn main() {}