#![feature(plugin)]
#![plugin(clippy)]
#![allow(unused)]
#![deny(clippy)]
fn main() {
let v = Some(true);
match v {
Some(x) => (),
y @ _ => (),
}
y @ None => (), // no error