14 lines
204 B
Rust
14 lines
204 B
Rust
#![allow(clippy::all)]
|
|
|
|
// Test for https://github.com/rust-lang/rust-clippy/issues/1588
|
|
|
|
fn main() {
|
|
match 1 {
|
|
1 => {},
|
|
2 => {
|
|
[0; 1];
|
|
},
|
|
_ => {},
|
|
}
|
|
}
|