oden/third-party/vendor/thiserror/tests/ui/transparent-struct-not-error.rs
2024-03-08 11:03:01 -08:00

9 lines
125 B
Rust

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