rust/tests/ui/patterns.rs

17 lines
260 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(clippy)]
#![allow(unused)]
#![deny(clippy)]
fn main() {
let v = Some(true);
match v {
Some(x) => (),
2017-02-08 07:58:07 -06:00
y @ _ => (),
}
match v {
Some(x) => (),
y @ None => (), // no error
}
}