thiserror/tests/ui/unexpected-struct-source.rs
2019-10-12 13:42:11 -07:00

7 lines
89 B
Rust

use thiserror::Error;
#[derive(Error, Debug)]
#[source]
pub struct Error;
fn main() {}