DEBSOURCES
Skip Quicknav
sources / rust-coreutils / 0.7.0-1 / vendor / thiserror / tests / ui / transparent-struct-not-error.rs
123456789
use thiserror::Error; #[derive(Error, Debug)] #[error(transparent)] pub struct Error { message: String, } fn main() {}