rust-clippy/tests/run-pass/ice-1588.rs
2018-08-29 11:08:29 -07:00

13 lines
160 B
Rust

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