thiserror/tests/ui/missing-display.rs
David Tolnay 4fe306f5c3
Restore UI test involving missing Display impl
This test existed prior to 04b91d7646.

Since 791a98eb93, we can rely on rust-src being installed.
2023-12-15 10:47:29 -08:00

9 lines
105 B
Rust

use thiserror::Error;
#[derive(Error, Debug)]
pub enum MyError {
First,
Second,
}
fn main() {}