rust/tests/crashes/133117.rs
2024-12-15 17:27:52 +01:00

9 lines
115 B
Rust

//@ known-bug: #133117
fn main() {
match () {
(!|!) if true => {}
(!|!) if true => {}
}
}