thiserror/tests/ui/source-enum-not-error.rs
David Tolnay ebebf77fe0
Format ui tests with rustfmt
`rustfmt tests/ui/*.rs`
2023-10-19 11:05:01 -07:00

12 lines
172 B
Rust

use thiserror::Error;
#[derive(Debug)]
pub struct NotError;
#[derive(Error, Debug)]
#[error("...")]
pub enum ErrorEnum {
Broken { source: NotError },
}
fn main() {}