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