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