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

9 lines
137 B
Rust

use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[error(transparent)]
Other { message: String },
}
fn main() {}