summaryrefslogtreecommitdiffstats
path: root/third_party/rust/thiserror/tests/ui/union.rs
blob: cd6a9346d5395ee7cda904b3d21b1f1acd20019b (plain)
1
2
3
4
5
6
7
8
9
use thiserror::Error;

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

fn main() {}