rust/tests/run-pass/ice-1588.rs
2019-01-08 21:46:39 +01:00

12 lines
138 B
Rust

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