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