mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
16 lines
317 B
Rust
16 lines
317 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![allow(unused)]
|
|
#![deny(clippy)]
|
|
|
|
fn main() {
|
|
let v = Some(true);
|
|
match v {
|
|
Some(x) => (),
|
|
y @ _ => (), //~ERROR the `y @ _` pattern can be written as just `y`
|
|
}
|
|
match v {
|
|
Some(x) => (),
|
|
y @ None => (), // no error
|
|
}
|
|
}
|