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.

13 lines
186 B
Rust
Raw Normal View History

// check-pass
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
union X { a: i8 }
fn main() {
let x = X { a: 5 };
match x {
X { a: _ | _ } => {},
}
}