thiserror/tests/ui/union.rs
2019-10-11 11:47:57 -07:00

9 lines
109 B
Rust

use thiserror::Error;
#[derive(Error)]
pub union U {
msg: &'static str,
num: usize,
}
fn main() {}