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