mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 13:57:38 +03:00
9 lines
109 B
Rust
9 lines
109 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error)]
|
|
pub union U {
|
|
msg: &'static str,
|
|
num: usize,
|
|
}
|
|
|
|
fn main() {}
|