rust-clippy/tests/ui/patterns.rs

17 lines
251 B
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![feature(tool_lints)]
2017-09-18 10:47:33 +00:00
#![allow(unused)]
2018-07-28 15:34:52 +00:00
#![warn(clippy::all)]
fn main() {
let v = Some(true);
match v {
Some(x) => (),
2017-02-08 13:58:07 +00:00
y @ _ => (),
}
match v {
Some(x) => (),
y @ None => (), // no error
}
}