mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
This test existed prior to04b91d7646
. Since791a98eb93
, we can rely on rust-src being installed.
9 lines
105 B
Rust
9 lines
105 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum MyError {
|
|
First,
|
|
Second,
|
|
}
|
|
|
|
fn main() {}
|