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