thiserror/tests/ui/fallback-impl-with-display.rs
2024-05-17 15:34:04 +02:00

14 lines
251 B
Rust

use core::fmt::{self, Display};
use thiserror::Error;
#[derive(Error, Debug)]
#[error]
pub struct MyError;
impl Display for MyError {
fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result {
unimplemented!()
}
}
fn main() {}