Revision control

Copy as Markdown

Other Tools

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