mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
13 lines
194 B
Rust
13 lines
194 B
Rust
#![feature(custom_attribute)]
|
|
|
|
fn main() {
|
|
#[clippy(author)]
|
|
let a = match 42 {
|
|
16 => 5,
|
|
17 => {
|
|
let x = 3;
|
|
x
|
|
},
|
|
_ => 1,
|
|
};
|
|
}
|