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

14 lines
160 B
Rust
Raw Normal View History

2018-07-30 04:33:44 -05:00
#![feature(tool_lints)]
2017-09-18 05:47:33 -05:00
2018-07-30 04:33:44 -05:00
#![allow(clippy::all)]
2017-03-03 07:46:33 -06:00
fn main() {
match 1 {
1 => {}
2 => {
[0; 1];
}
_ => {}
}
}