mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
13 lines
160 B
Rust
13 lines
160 B
Rust
#![feature(tool_lints)]
|
|
|
|
#![allow(clippy::all)]
|
|
|
|
fn main() {
|
|
match 1 {
|
|
1 => {}
|
|
2 => {
|
|
[0; 1];
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|