]> git.proxmox.com Git - rustc.git/blame - vendor/thiserror/tests/ui/union.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / vendor / thiserror / tests / ui / union.rs
CommitLineData
f20569fa
XL
1use thiserror::Error;
2
3#[derive(Error)]
4pub union U {
5 msg: &'static str,
6 num: usize,
7}
8
9fn main() {}