blob: 15d0f705b367f49b696065c971a7724151b231a8 [file] [log] [blame]
// run-pass
#![allow(clippy::all)]
/// Test for https://github.com/rust-lang/rust-clippy/issues/1588
fn main() {
match 1 {
1 => {},
2 => {
[0; 1];
},
_ => {},
}
}