Files
fparkan/vendor/thiserror/tests/ui/missing-display.rs
T

10 lines
105 B
Rust
Raw Normal View History

2024-01-08 01:21:28 +04:00
use thiserror::Error;
#[derive(Error, Debug)]
pub enum MyError {
First,
Second,
}
fn main() {}