rust/tests/crashes/133063.rs

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

9 lines
108 B
Rust
Raw Normal View History

2024-11-21 13:09:46 +00:00
//@ known-bug: #133063
fn foo(x: !) {
match x {
(! | !) if false => {}
_ => {}
}
}