DEBSOURCES
Skip Quicknav
sources / rust-thiserror-no-std / 2.0.2-1 / tests / ui / from-not-source.rs
1234567891011
use thiserror_no_std::Error; #[derive(Debug, Error)] pub struct Error { #[source] source: std::io::Error, #[from] other: anyhow::Error, } fn main() {}