1 2 3 4 5 6 7 8 9 10 11 12 13
#![allow(clippy::all)] /// Test for https://github.com/rust-lang/rust-clippy/issues/1588 fn main() { match 1 { 1 => {}, 2 => { [0; 1]; }, _ => {}, } }