mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 00:17:13 +00:00
16 lines
251 B
Rust
16 lines
251 B
Rust
#![feature(tool_lints)]
|
|
|
|
#![allow(unused)]
|
|
#![warn(clippy::all)]
|
|
|
|
fn main() {
|
|
let v = Some(true);
|
|
match v {
|
|
Some(x) => (),
|
|
y @ _ => (),
|
|
}
|
|
match v {
|
|
Some(x) => (),
|
|
y @ None => (), // no error
|
|
}
|
|
}
|