mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
13 lines
205 B
Rust
13 lines
205 B
Rust
#![allow(clippy::all)]
|
|
|
|
/// Test for https://github.com/rust-lang/rust-clippy/issues/1588
|
|
|
|
fn main() {
|
|
match 1 {
|
|
1 => {},
|
|
2 => {
|
|
[0; 1];
|
|
},
|
|
_ => {},
|
|
}
|
|
}
|