rust/tests/ui/unsafe/union_wild_or_wild.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
122 B
Rust
Raw Normal View History

//@ check-pass
union X { a: i8 }
fn main() {
let x = X { a: 5 };
match x {
X { a: _ | _ } => {},
}
}