fparkan/vendor/thiserror/tests/ui/unexpected-field-fmt.rs

12 lines
150 B
Rust
Raw Normal View History

use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
What {
#[error("...")]
io: std::io::Error,
},
}
fn main() {}