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

12 lines
138 B
Rust
Raw Normal View History

2018-07-30 09:33:44 +00:00
#![allow(clippy::all)]
2017-03-03 13:46:33 +00:00
fn main() {
match 1 {
2018-12-09 22:26:16 +00:00
1 => {},
2017-03-03 13:46:33 +00:00
2 => {
[0; 1];
2018-12-09 22:26:16 +00:00
},
_ => {},
2017-03-03 13:46:33 +00:00
}
}