summaryrefslogtreecommitdiffstats
path: root/third_party/rust/thiserror/tests/ui/fallback-impl-with-display.rs
blob: 3341187315985d286f9b33b948de9fbc43bbd703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::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() {}