summaryrefslogtreecommitdiffstats
path: root/third_party/rust/thiserror/tests/ui/missing-display.rs
blob: 31e23fe683d73a31fe57eea6ba94876017a931c3 (plain)
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Error, Debug)]
pub enum MyError {
    First,
    Second,
}

fn main() {}