DEBSOURCES
Skip Quicknav
sources / rust-thiserror-no-std / 2.0.2-1 / tests / ui / unexpected-field-fmt.rs
1234567891011
use thiserror_no_std::Error; #[derive(Error, Debug)] pub enum Error { What { #[error("...")] io: std::io::Error, }, } fn main() {}