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