DEBSOURCES
Skip Quicknav
sources / rust-thiserror-no-std / 2.0.2-1 / tests / ui / transparent-struct-source.rs
1234567
use thiserror_no_std::Error; #[derive(Error, Debug)] #[error(transparent)] pub struct Error(#[source] anyhow::Error); fn main() {}