DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / vendor / thiserror-2.0.9 / tests / ui / unexpected-field-fmt.rs
1234567891011
use thiserror::Error; #[derive(Error, Debug)] pub enum Error { What { #[error("...")] io: std::io::Error, }, } fn main() {}