rust/tests/crashes/130779.rs

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

12 lines
137 B
Rust
Raw Normal View History

2024-09-28 11:07:54 +00:00
//@ known-bug: #130779
#![feature(never_patterns)]
enum E { A }
fn main() {
match E::A {
! |
if true => {}
}
}