rust-clippy/tests/ui/patterns.rs
2018-08-29 11:08:29 -07:00

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
}
}