rust/tests/run-pass/ice-1588.rs

14 lines
132 B
Rust

#![allow(clippy)]
fn main() {
match 1 {
1 => {}
2 => {
[0; 1];
}
_ => {}
}
}