mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
13 lines
169 B
Rust
13 lines
169 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![allow(clippy)]
|
|
|
|
fn main() {
|
|
match 1 {
|
|
1 => {}
|
|
2 => {
|
|
[0; 1];
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|