rust/tests/ui/patterns.rs

17 lines
223 B
Rust
Raw Normal View History

2017-09-18 12:47:33 +02:00
#![allow(unused)]
#![warn(clippy)]
fn main() {
let v = Some(true);
match v {
Some(x) => (),
2017-02-08 14:58:07 +01:00
y @ _ => (),
}
match v {
Some(x) => (),
y @ None => (), // no error
}
}